1a13c21377
(cherry picked from commit c0d5df1)
10 lines
165 B
Plaintext
Vendored
10 lines
165 B
Plaintext
Vendored
// "Create extension property 'Unit.foo'" "true"
|
|
// ERROR: Property must be initialized
|
|
// WITH_RUNTIME
|
|
|
|
val Unit.foo: Int
|
|
|
|
fun test() {
|
|
val a: Int = Unit.foo
|
|
}
|