Files
kotlin-fork/idea/testData/intentions/implementAbstractMember/property/inObject.kt
T
2015-12-25 18:50:37 +03:00

5 lines
129 B
Kotlin
Vendored

// IS_APPLICABLE: false
// ERROR: Abstract property 'foo' in non-abstract class 'A'
object A {
abstract val <caret>foo: Int
}