59f192ef90
Includes changes to decompiled text Old syntax is used in builtins and project code for now
14 lines
218 B
Kotlin
14 lines
218 B
Kotlin
class X {
|
|
default object {
|
|
fun String.f(): X = X()
|
|
fun g(): X = X()
|
|
}
|
|
}
|
|
|
|
fun foo(): X {
|
|
return <caret>
|
|
}
|
|
|
|
// ABSENT: f
|
|
// EXIST: { lookupString:"g", itemText:"X.g", tailText:"() (<root>)" }
|