mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 00:21:26 +00:00
9 lines
145 B
Kotlin
Vendored
9 lines
145 B
Kotlin
Vendored
//ALLOW_AST_ACCESS
|
|
package test
|
|
|
|
public object Obj {
|
|
public val v: String = { "val" }()
|
|
public fun f(): String = "fun"
|
|
}
|
|
|
|
val x = { 5 }() |