1f0d56e157
#KT-57209
14 lines
218 B
Kotlin
Vendored
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
|
|
}
|
|
}
|