11 lines
158 B
Kotlin
11 lines
158 B
Kotlin
// "Create property 'foo'" "true"
|
|
// ERROR: Property must be initialized or be abstract
|
|
|
|
object A {
|
|
val foo: Int
|
|
}
|
|
|
|
fun test() {
|
|
val a: Int = A.foo
|
|
}
|