KT-18786: J2K should move all properties to top of class

#KT-18786 fixed
This commit is contained in:
Dimach
2017-07-14 03:01:39 +03:00
committed by Simon Ogorodnik
parent ccfcfd8721
commit a59021a25e
30 changed files with 117 additions and 103 deletions
+4 -4
View File
@@ -3,11 +3,11 @@ internal interface I {
var something2: Int
fun setSomething3(value: Int)
val something4: Int
fun setSomething4(value: String)
val something5: Int
fun setSomething3(value: Int)
fun setSomething4(value: String)
fun setSomething5(value: Int): Int
}
}