Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
delegation
/
kt8154.kt
blob: 463c668f1bf3d4804f99f857231e478a51988c01 [
file
]
// FIR_IDENTICAL
interface
A
<
T
>
{
fun foo
()
}
interface
B
<
T
>
:
A
<
T
>
{
fun bar
()
}
class
BImpl
<
T
>(
a
:
A
<
T
>)
:
B
<
T
>,
A
<
T
>
by
a
{
override
fun bar
()
{
throw
UnsupportedOperationException
()
}
}