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