59f192ef90
Includes changes to decompiled text Old syntax is used in builtins and project code for now
27 lines
371 B
Kotlin
27 lines
371 B
Kotlin
package test
|
|
|
|
class WithClassObject {
|
|
default object {
|
|
fun foo() {}
|
|
|
|
val value: Int = 0
|
|
val valueWithGetter: Int
|
|
get() = 1
|
|
|
|
var variable: Int = 0
|
|
var variableWithAccessors: Int
|
|
get() = 0
|
|
set(v) {}
|
|
|
|
}
|
|
|
|
class MyInner {
|
|
fun foo() {}
|
|
val value: Int = 0
|
|
}
|
|
}
|
|
|
|
object PackageInner {
|
|
fun foo() {}
|
|
val value: Int = 0
|
|
} |