Files
kotlin-fork/idea/testData/quickfix/lateinit/withGetterSetter.kt
T

7 lines
140 B
Kotlin
Vendored

// "Remove getter and setter from property" "true"
class A {
<caret>lateinit var str: String
get() = ""
set(value) {}
}