mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 00:21:28 +00:00
13 lines
258 B
Kotlin
Vendored
13 lines
258 B
Kotlin
Vendored
class Outer<T> {
|
|
class Nested {
|
|
fun foo(t: <!UNRESOLVED_REFERENCE!>T<!>) = <!DEBUG_INFO_ELEMENT_WITH_ERROR_TYPE!>t<!>
|
|
}
|
|
|
|
class Nested2<T> {
|
|
fun foo(t: T) = t
|
|
}
|
|
|
|
inner class Inner {
|
|
fun foo(t: T) = t
|
|
}
|
|
} |