New J2K: Fix super call to Kotlin class with implicit constructor

#KT-36159 fixed
This commit is contained in:
Ilya Kirillov
2020-02-13 19:26:24 +03:00
parent 7c586ce736
commit 6b913da698
7 changed files with 37 additions and 1 deletions
@@ -0,0 +1,2 @@
open class EmptyTest {
}
@@ -0,0 +1,5 @@
public class TestJ extends EmptyTest {
public TestJ() {
super();
}
}
@@ -0,0 +1 @@
class TestJ : EmptyTest()