4d9b19da82
#KT-18539 Fixed
11 lines
196 B
Plaintext
Vendored
11 lines
196 B
Plaintext
Vendored
private val A.foo: Boolean
|
|
get() {
|
|
TODO("Not yet implemented")
|
|
}
|
|
|
|
// "Create extension property 'A.foo'" "true"
|
|
class A(val n: Int)
|
|
|
|
class B {
|
|
val A.test: Boolean get() = foo
|
|
} |