48ac89dca4
#KT-4920 Fixed
10 lines
195 B
Plaintext
Vendored
10 lines
195 B
Plaintext
Vendored
// ERROR: Property must be initialized
|
|
class Owner {
|
|
}
|
|
|
|
var Owner.p: Int
|
|
get() { return 1 }
|
|
set(value) {
|
|
<caret><selection>throw UnsupportedOperationException()</selection>
|
|
}
|