6 lines
93 B
Kotlin
6 lines
93 B
Kotlin
// ERROR: Property must be initialized
|
|
class Owner {
|
|
var <caret>p: Int
|
|
set(v) {}
|
|
}
|