Files
kotlin-fork/j2k/tests/testData/ast/class/kt-639.ide.kt
T
Pavel Talanov d69c61c972 Converter:
Preserve white spaces for top members (classes, package statements, comments)
2013-12-22 16:49:54 +04:00

26 lines
422 B
Kotlin

package demo
import java.util.HashMap
class Test() {
class object {
fun init(): Test {
val __ = Test()
return __
}
fun init(s: String): Test {
val __ = Test()
return __
}
}
}
class User() {
fun main() {
val m = HashMap(1)
val m2 = HashMap(10)
val t1 = Test.init()
val t2 = Test.init("")
}
}