57763e10e0
#KT-6689 Fixed
13 lines
211 B
Kotlin
13 lines
211 B
Kotlin
// "Create property 'foo'" "true"
|
|
// ERROR: Property must be initialized or be abstract
|
|
|
|
class A {
|
|
object B {
|
|
private val foo: Int
|
|
|
|
fun test(): Int {
|
|
return foo
|
|
}
|
|
}
|
|
}
|