Kapt: Support new @JvmDefault functionality (KT-25960)

This commit is contained in:
Yan Zhulanow
2020-09-28 18:11:11 +09:00
parent a44fd964cf
commit 9cdd6e9a8f
13 changed files with 201 additions and 4 deletions
@@ -0,0 +1,13 @@
// !JVM_DEFAULT_MODE: all
interface Foo {
fun foo() {
System.out.println("foo")
}
fun foo2(a: Int) {
System.out.println("foo2")
}
fun bar()
}