59f192ef90
Includes changes to decompiled text Old syntax is used in builtins and project code for now
13 lines
162 B
Plaintext
13 lines
162 B
Plaintext
class K {
|
|
default object {
|
|
fun bar(): K? = K()
|
|
}
|
|
}
|
|
|
|
fun foo(){
|
|
val k : K = K.bar()!!<caret>
|
|
}
|
|
|
|
// ELEMENT_TEXT: "!! K.bar"
|
|
// TAIL_TEXT: "()"
|