mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
19 lines
340 B
Kotlin
Vendored
19 lines
340 B
Kotlin
Vendored
// !API_VERSION: 1.3
|
|
// JVM_TARGET: 1.8
|
|
// WITH_RUNTIME
|
|
|
|
interface Test {
|
|
@kotlin.annotations.JvmDefault
|
|
var z: String
|
|
get() = "OK"
|
|
set(value) {}
|
|
}
|
|
|
|
// TESTED_OBJECT_KIND: function
|
|
// TESTED_OBJECTS: Test, getZ
|
|
// FLAGS: ACC_PUBLIC
|
|
|
|
// TESTED_OBJECT_KIND: function
|
|
// TESTED_OBJECTS: Test, setZ
|
|
// FLAGS: ACC_PUBLIC
|