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