59f192ef90
Includes changes to decompiled text Old syntax is used in builtins and project code for now
16 lines
148 B
Kotlin
16 lines
148 B
Kotlin
package t
|
|
|
|
class A {
|
|
default object Default {
|
|
fun test()
|
|
}
|
|
}
|
|
|
|
fun test() {
|
|
<caret>A.test()
|
|
}
|
|
|
|
|
|
// REF: default object of (t).A
|
|
|