99ba340236
#KT-11799 Fixed
10 lines
173 B
Plaintext
Vendored
10 lines
173 B
Plaintext
Vendored
// "Create extension property 'Unit.foo'" "true"
|
|
// ERROR: Property must be initialized
|
|
// WITH_RUNTIME
|
|
|
|
private val Unit.foo: Int
|
|
|
|
fun test() {
|
|
val a: Int = Unit.foo
|
|
}
|