Files
kotlin-fork/compiler/testData/ir/irText/declarations/parameters/genericInnerClass.kt.txt
T
2020-11-26 00:14:03 +03:00

28 lines
351 B
Plaintext
Vendored

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