Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
inner
/
traits.kt
blob: f4c830f149c75675f46a2fc76dad513abdf2521d [
file
]
// FIR_IDENTICAL
// KT-1188
interface
Foo
{
val b
:
Bar
val b1
:
Foo
.
Bar
interface
Bar
{}
}
interface
Foo2
:
Foo
{
val bb1
:
Foo
.
Bar
}