David Kubecka
04/06/2023, 9:24 AMclass C<X> {
class N {
fun foo(c: C<X>) {}
}
}
That's apparently not possible. Why? I'm able to workaround it by making foo
an extension function but that doesn't feel right.simon.vergauwen
04/06/2023, 9:28 AMclass C<X> {
inner class N {
fun foo(c: C<X>) {}
}
}
This question was probably more suited for #general-advice, it's not related to #coroutines.David Kubecka
04/06/2023, 9:30 AMDavid Kubecka
04/06/2023, 9:33 AMmkrussel
04/06/2023, 12:23 PM