only stub default constructor when compiling against .java source files

This commit is contained in:
Kevin Bierhoff
2020-03-09 11:33:20 -07:00
committed by Alexander Udalov
parent c83860187c
commit 7448761dfd
19 changed files with 90 additions and 2 deletions
@@ -0,0 +1,4 @@
package test;
public class ClassDefaultConstructor {
}
@@ -0,0 +1,3 @@
package test
fun useClassDefaultConstructor() = ClassDefaultConstructor()
@@ -0,0 +1,7 @@
package test
public fun useClassDefaultConstructor(): test.ClassDefaultConstructor
public open class ClassDefaultConstructor {
public constructor ClassDefaultConstructor()
}