Files
kotlin-fork/idea/testData/codeInsight/moveUpDown/classBodyDeclarations/property/propertyAtClassInitializer1.kt
T
2015-04-29 14:07:05 +02:00

9 lines
89 B
Kotlin
Vendored

// MOVE: down
// class A
class A {
// val x
<caret>val x = ""
init {
}
}