Files
kotlin-fork/idea/testData/quickfix/abstract/abstractPropertyWithGetter1.kt
T
2015-10-09 21:06:26 +03:00

5 lines
102 B
Kotlin
Vendored

// "Make 'i' not abstract" "true"
class B {
<caret>abstract val i: Int = 0
get() = field
}