Change Signature: Add tests for secondary constructors and delegation calls

This commit is contained in:
Alexey Sedunov
2015-03-18 14:11:08 +03:00
parent d01cc8ac55
commit 173a28a25e
9 changed files with 129 additions and 0 deletions
@@ -0,0 +1,9 @@
class K: J {
constructor(a: Int): super(a) {
}
}
fun test() {
J(1)
}