14 lines
200 B
Kotlin
Vendored
14 lines
200 B
Kotlin
Vendored
// !JVM_DEFAULT_MODE: disable
|
|
|
|
interface Foo {
|
|
fun foo() {
|
|
System.out.println("foo")
|
|
}
|
|
|
|
@JvmDefault
|
|
fun foo2(a: Int) {
|
|
System.out.println("foo2")
|
|
}
|
|
|
|
fun bar()
|
|
} |