Files
kotlin-fork/idea/testData/quickfix/abstract/afterAbstractPropertyWithGetter1.kt
T
2011-09-21 17:58:44 +04:00

5 lines
86 B
Kotlin

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