Files
kotlin/compiler/testData/codegen/newInstanceExplicitConstructor.kt
2013-01-24 21:12:27 +04:00

11 lines
114 B
Kotlin

class SimpleClass {
this() {}
fun foo() = 610
}
fun test() {
val c = SimpleClass()
return c.foo()
}