a0d8ab6db5
#KT-1712 fixed
9 lines
131 B
Kotlin
Vendored
9 lines
131 B
Kotlin
Vendored
class Test {
|
|
var test : Int
|
|
get () {
|
|
return 0
|
|
}
|
|
set (value) {
|
|
throw NotSupportedException()
|
|
}
|
|
} |