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

13 lines
153 B
Kotlin
Vendored

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