59f192ef90
Includes changes to decompiled text Old syntax is used in builtins and project code for now
16 lines
193 B
Kotlin
16 lines
193 B
Kotlin
package sample
|
|
|
|
class Kool {
|
|
default object {
|
|
val foo: Kool = Kool()
|
|
fun bar(): Kool = Kool()
|
|
}
|
|
}
|
|
|
|
fun foo(){
|
|
val k : Kool = K<caret>
|
|
}
|
|
|
|
// EXIST: foo
|
|
// EXIST: bar
|