13 lines
214 B
Kotlin
13 lines
214 B
Kotlin
// "Create property 'foo' from usage" "true"
|
|
// ERROR: Property must be initialized or be abstract
|
|
|
|
class A {
|
|
object B {
|
|
val foo: Int
|
|
|
|
fun test(): Int {
|
|
return foo
|
|
}
|
|
}
|
|
}
|