c89d1af9fa
Place generated property next to other properties #KT-14886 Fixed
11 lines
268 B
Plaintext
Vendored
11 lines
268 B
Plaintext
Vendored
private val A.foo: Boolean
|
|
get() {
|
|
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
|
}
|
|
|
|
// "Create extension property 'A.foo'" "true"
|
|
class A(val n: Int)
|
|
|
|
class B {
|
|
val A.test: Boolean get() = foo
|
|
} |