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

22 lines
263 B
Plaintext
Vendored

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