10 lines
160 B
Plaintext
Vendored
10 lines
160 B
Plaintext
Vendored
// "Create extension property 'foo'" "true"
|
|
// ERROR: Property must be initialized
|
|
// WITH_RUNTIME
|
|
|
|
val Unit.foo: Int
|
|
|
|
fun test() {
|
|
val a: Int = Unit.foo
|
|
}
|