Files
kotlin-fork/compiler/testData/ir/irText/declarations/parameters/genericInnerClass.kt.txt
T
2024-02-16 10:19:38 +00:00

22 lines
263 B
Kotlin
Vendored

class Outer<T1 : Any?> {
inner class Inner<T2 : Any?> {
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
fun foo(x1: T1, x2: T2) {
}
}
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
}