Files
kotlin-fork/idea/testData/inspectionsLocal/suspiciousVarProperty/noBackingFieldRef.kt.after
T
2018-10-23 12:31:42 +03:00

5 lines
94 B
Plaintext
Vendored

// FIX: Change to val and delete initializer
class Test {
val foo: Int
get() = 1
}