mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
18 lines
172 B
Kotlin
Vendored
18 lines
172 B
Kotlin
Vendored
// IGNORE_BACKEND: JVM_IR
|
|
interface A
|
|
|
|
interface B {
|
|
fun foo()
|
|
}
|
|
|
|
interface C {
|
|
val bar: Int
|
|
}
|
|
|
|
interface D {
|
|
fun baz() = 5
|
|
}
|
|
|
|
interface E {
|
|
class InsideE
|
|
} |