97b0f50d35
#KT-6023 Fixed
9 lines
144 B
Kotlin
9 lines
144 B
Kotlin
// "Create extension property 'foo'" "true"
|
|
// ERROR: Property must be initialized
|
|
|
|
fun test() {
|
|
val a: Int = Unit.foo
|
|
}
|
|
|
|
val Unit.foo: Int
|