e1f26ffc74
#KT-30393 Fixed
9 lines
152 B
Kotlin
Vendored
9 lines
152 B
Kotlin
Vendored
class Test {
|
|
var test: Int
|
|
get() {
|
|
return 0
|
|
}
|
|
set(value) {
|
|
throw NotSupportedException()
|
|
}
|
|
} |