2abcd17713
#KT-10668 Fixed (cherry picked from commit bc4c013)
11 lines
222 B
Kotlin
Vendored
11 lines
222 B
Kotlin
Vendored
// "Create extension property 'foo'" "true"
|
|
// ERROR: Property must be initialized
|
|
class A(val n: Int)
|
|
|
|
class B {
|
|
var A.test: Boolean
|
|
get() = foo
|
|
set(v: Boolean) {
|
|
<caret>foo = v
|
|
}
|
|
} |