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

10 lines
112 B
Kotlin
Vendored

//ALLOW_AST_ACCESS
package test
class A {
companion object {
val some = { 1 }()
}
val other = some
}