Files
kotlin-fork/plugins/kapt3/kapt3-compiler/testData/converter/jvmDefaultAll.kt
T
2020-09-29 23:58:30 +09:00

13 lines
180 B
Kotlin
Vendored

// !JVM_DEFAULT_MODE: all
interface Foo {
fun foo() {
System.out.println("foo")
}
fun foo2(a: Int) {
System.out.println("foo2")
}
fun bar()
}