Files
kotlin/compiler/testData/loadJava/compiledKotlin/prop/VarDelegationToTraitImpl.kt
2015-05-12 19:43:17 +02:00

13 lines
202 B
Kotlin
Vendored

package test
// test composed from KT-2193
interface A {
open var v: String
get() = "test"
set(value) {
throw UnsupportedOperationException()
}
}
class B() : A