mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
9 lines
153 B
Kotlin
Vendored
9 lines
153 B
Kotlin
Vendored
// "Create member property 'A.foo'" "true"
|
|
// ERROR: Property must be initialized or be abstract
|
|
|
|
object A
|
|
|
|
fun test() {
|
|
val a: Int = A.<caret>foo
|
|
}
|