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