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