Files
kotlin-fork/idea/testData/intentions/implementAsConstructorParameter/notAbstractNoBodyInClass.kt
T
2015-12-30 00:56:34 +03:00

5 lines
118 B
Kotlin
Vendored

// IS_APPLICABLE: false
// ERROR: Property must be initialized or be abstract
open class A {
val <caret>foo: Int
}