Converter tests:

Add tests for preserving white spaces between class members
This commit is contained in:
Pavel V. Talanov
2013-12-03 18:17:45 +04:00
parent 7f88de1dba
commit 30c016fa2a
14 changed files with 374 additions and 2 deletions
@@ -0,0 +1,38 @@
open class F() {
//c3
//c4
open fun f2() {
}
open fun f3() {
}
open fun f4() {
}
class object {
//c1
/*c2*/
open fun f1() {
}
var i: Int? = 0
//c5
open fun f5() {
}
//c6
}
}