c2b38cfa41
#KT-11795 Fixed
12 lines
269 B
Plaintext
Vendored
12 lines
269 B
Plaintext
Vendored
// "Create extension property 'A.foo'" "true"
|
|
class A(val n: Int)
|
|
|
|
class B {
|
|
val A.test: Boolean get() = foo
|
|
}
|
|
|
|
private val A.foo: Boolean
|
|
get() {
|
|
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
|
}
|