Files
kotlin-fork/compiler/testData/ir/irText/firProblems/JCTree.fir.kt.txt
T
2022-06-16 06:51:34 +00:00

23 lines
388 B
Plaintext
Vendored

class Owner<out T : JCTree> {
constructor(tree: T) /* primary */ {
super/*Any*/()
/* <init>() */
}
val tree: T
field = tree
get
val foo: String
get(): String {
var tree: JCTree = <this>.<get-tree>()
when {
tree is JCTypeApply -> return tree /*as JCTypeApply */(super<JCTypeApply>).#clazz /*!! String */
}
return ""
}
}