1a13c21377
(cherry picked from commit c0d5df1)
7 lines
160 B
Kotlin
Vendored
7 lines
160 B
Kotlin
Vendored
// "Create extension property 'A.foo'" "true"
|
|
// ERROR: Property must be initialized
|
|
class A(val n: Int)
|
|
|
|
class B {
|
|
val A.test: Boolean get() = <caret>foo
|
|
} |