9 lines
172 B
Plaintext
9 lines
172 B
Plaintext
// ERROR: Property must be initialized
|
|
class Owner {
|
|
}
|
|
|
|
var Owner.p: Int
|
|
get() = <caret><selection>throw UnsupportedOperationException()</selection>
|
|
set(v) {
|
|
}
|