Files
kotlin-fork/plugins/kapt3/kapt3-cli/testData/integration-kapt4/defaultMethodsWarning/Test.kt
T

11 lines
99 B
Kotlin
Vendored

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