Files
kotlin-fork/idea/testData/codegen/newInstanceExplicitConstructor.jet
T
2011-06-15 18:00:22 +04:00

11 lines
114 B
Plaintext

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