blob: 211ad5593f7e6e238b55ddad4e1822a90175bc4c [file] [log] [blame]
// KT-2228
package test
interface A {
var v: String
get() = "test"
set(value) {
throw UnsupportedOperationException()
}
}