59f192ef90
Includes changes to decompiled text Old syntax is used in builtins and project code for now
18 lines
150 B
Kotlin
18 lines
150 B
Kotlin
package t
|
|
|
|
class A {
|
|
default object B {
|
|
|
|
}
|
|
}
|
|
|
|
val A.B.bar : Int get() = 1
|
|
|
|
fun test() {
|
|
<caret>A.bar
|
|
}
|
|
|
|
|
|
// REF: default object of (t).A
|
|
|