J2K: no call to super constructor in the header of class when there is no primary constructor

This commit is contained in:
Valentin Kipyatkov
2015-03-30 13:33:30 +03:00
parent c57f2b10d6
commit 7e50f72d5b
10 changed files with 23 additions and 18 deletions
@@ -1,4 +1,7 @@
class C {
class Base {
}
class C extends Base {
C(int arg1, int arg2, int arg3) {
}
@@ -1,4 +1,6 @@
class C {
open class Base
class C : Base {
constructor(arg1: Int, arg2: Int, arg3: Int) {
}