mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 08:31:26 +00:00
13 lines
136 B
Kotlin
Vendored
13 lines
136 B
Kotlin
Vendored
// JVM_TARGET: 1.8
|
|
|
|
interface Z {
|
|
val z: String;
|
|
get() = "OK"
|
|
}
|
|
|
|
|
|
class Test : Z
|
|
|
|
fun box() : String {
|
|
return Test().z
|
|
} |