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

7 lines
128 B
Kotlin
Vendored

//ALLOW_AST_ACCESS
package test
public object Obj {
public val v: String = { "val" }()
public fun f(): String = "fun"
}