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

9 lines
107 B
Plaintext

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