4d9b19da82
#KT-18539 Fixed
12 lines
188 B
Plaintext
Vendored
12 lines
188 B
Plaintext
Vendored
// "Create extension property 'Unit.foo'" "true"
|
|
// WITH_RUNTIME
|
|
|
|
private val Unit.foo: Int
|
|
get() {
|
|
TODO("Not yet implemented")
|
|
}
|
|
|
|
fun test() {
|
|
val a: Int = Unit.foo
|
|
}
|