Files
kotlin-fork/idea/testData/intentions/movePropertyToClassBody/location2.kt.after
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

9 lines
93 B
Plaintext
Vendored

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