ebb9659e03
Currently JVM IR is not supported in kapt, so almost all tests are failing, and thus are muted with IGNORE_BACKEND. #KT-49682
15 lines
221 B
Kotlin
Vendored
15 lines
221 B
Kotlin
Vendored
// IGNORE_BACKEND: JVM_IR
|
|
// !JVM_DEFAULT_MODE: all-compatibility
|
|
|
|
interface Foo {
|
|
fun foo() {
|
|
System.out.println("foo")
|
|
}
|
|
|
|
fun foo2(a: Int) {
|
|
System.out.println("foo2")
|
|
}
|
|
|
|
fun bar()
|
|
}
|