Files
kotlin-fork/compiler/testData/diagnostics/tests/inner/traits.kt
T
2015-05-12 19:43:17 +02:00

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
}