13 lines
190 B
Kotlin
Vendored
13 lines
190 B
Kotlin
Vendored
class Outer<T> {
|
|
class Nested {
|
|
fun foo(t: T) = t
|
|
}
|
|
|
|
class Nested2<T> {
|
|
fun foo(t: T) = t
|
|
}
|
|
|
|
inner class Inner {
|
|
fun foo(t: T) = t
|
|
}
|
|
} |