Files
kotlin-fork/j2k/tests/testData/ast/issues/kt-792-mixed.ide.kt
T
Pavel V. Talanov 7f88de1dba Converter tests:
White spaces in member lists are preserved
2013-12-22 16:49:47 +04:00

9 lines
95 B
Kotlin

package demo
class Test(i: Int) {
fun test() {
val i = 10
Test(i)
}
}