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