Files
kotlin-fork/compiler/testData/diagnostics/tests/inner/outerGenericParam.fir.kt
T

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
}
}