Files
kotlin-fork/idea/testData/intentions/movePropertyToConstructor/getter.kt
T
2017-03-24 15:22:50 +03:00

8 lines
120 B
Kotlin
Vendored

// IS_APPLICABLE: false
class TestClass {
val <caret>text: String
get() {
return ""
}
}