59f192ef90
Includes changes to decompiled text Old syntax is used in builtins and project code for now
14 lines
214 B
Kotlin
14 lines
214 B
Kotlin
// SIBLING:
|
|
class MyClass {
|
|
fun test() {
|
|
<selection>P.foo()
|
|
P.a</selection>
|
|
}
|
|
|
|
public class P {
|
|
default object {
|
|
val a = 1
|
|
fun foo() = 1
|
|
}
|
|
}
|
|
} |