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

5 lines
86 B
Plaintext
Vendored

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