J2K: no call to super constructor in the header of class when there is no primary constructor
This commit is contained in:
@@ -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) {
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user