Files

11 lines
99 B
Kotlin
Vendored

package test
interface I1 {
fun foo() {}
}
interface I2 {
fun bar() {}
}
class C: I1, I2