Files
kotlin/compiler/testData/loadJava/compiledKotlin/prop/VarDelegationToTraitImpl.kt
2013-12-17 20:28:59 +04:00

13 lines
198 B
Kotlin

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