Files
kotlin-fork/idea/testData/intentions/movePropertyToClassBody/location2.kt
T
Vyacheslav Gerasimov 24476fc581 Fix MoveProperty intention: better property placement
Property is placed now before first property, or at the beginning of class body if no properties found.

#KT-18044 Fixed
2017-06-01 20:35:20 +03:00

8 lines
84 B
Kotlin
Vendored

class TestClass(val <caret>text: String) {
val p1 = 0
fun foo() {
}
}