6 lines
107 B
Kotlin
Vendored
6 lines
107 B
Kotlin
Vendored
// "Remove getter from property" "true"
|
|
|
|
class A {
|
|
<caret>lateinit var str: String
|
|
get() = ""
|
|
} |