Files
kotlin-fork/compiler/testData/diagnostics/tests/inner/traits.fir.kt
T

12 lines
136 B
Kotlin
Vendored

// KT-1188
interface Foo {
val b : Bar
val b1 : Foo.Bar
interface Bar {}
}
interface Foo2 : Foo {
val bb1 : Foo.Bar
}