Files
2023-03-28 13:20:53 +00:00

14 lines
218 B
Kotlin
Vendored

class Outer<T> {
class Nested {
fun foo(t: <!UNRESOLVED_REFERENCE!>T<!>) = t
}
class Nested2<T> {
fun foo(t: T) = t
}
inner class Inner {
fun foo(t: T) = t
}
}