Files
kotlin/compiler/testData/loadJava/compiledKotlin/classObject/ClassObjectDeclaresVal.kt
2018-07-24 10:52:16 +03:00

9 lines
124 B
Kotlin
Vendored

//ALLOW_AST_ACCESS
package test
class ClassObjectDeclaresProperty {
companion object {
val i = { 1 }()
}
}