Files
kotlin-fork/compiler/testData/ir/irText/firProblems/SignatureComputationComplexJavaGeneric.kt.txt
T
2023-03-24 09:12:16 +00:00

17 lines
209 B
Plaintext
Vendored

class Test<T : Any?> : J<T> {
constructor(x: T) /* primary */ {
super/*J*/<T>()
/* <init>() */
}
val x: T
field = x
get
fun test(b: B<T>) {
b.output(x = <this>.<get-x>())
}
}