ebb9659e03
Currently JVM IR is not supported in kapt, so almost all tests are failing, and thus are muted with IGNORE_BACKEND. #KT-49682
18 lines
253 B
Kotlin
Vendored
18 lines
253 B
Kotlin
Vendored
// IGNORE_BACKEND: JVM_IR
|
|
|
|
interface IntfWithoutDefaultImpls
|
|
|
|
interface IntfWithDefaultImpls {
|
|
fun a() {}
|
|
}
|
|
|
|
interface Intf {
|
|
companion object {
|
|
val BLACK = 1
|
|
const val WHITE = 2
|
|
}
|
|
|
|
val color: Int
|
|
get() = BLACK
|
|
}
|