blob: 68cb487a80faf59dbab9830af3f70aadc3818720 [file] [log] [blame]
package test
// test composed from KT-2193
interface A {
open var v: String
get() = "test"
set(value) {
throw UnsupportedOperationException()
}
}
class B() : A