Files
kotlin/compiler/testData/codegen/newInstanceExplicitConstructor.jet
2011-10-20 16:21:18 +02:00

11 lines
114 B
Plaintext

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