9 lines
154 B
Kotlin
9 lines
154 B
Kotlin
class Test {
|
|
var test: Int
|
|
get () {
|
|
return 0
|
|
}
|
|
set (value) {
|
|
throw NotSupportedException()
|
|
}
|
|
} |