Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fae15b3fc4205675bfb51513d6068f83490926d3
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithStdLib
/
comparingDifferentSubclassesCommonInterface.fir.kt
blob: 77ad8ad0502ca1af8985928508fe2a1ec10db9d0 [
file
] [
log
] [
blame
]
// ISSUE: KT-54473
interface
I
class
A
:
I
class
B
:
I
fun test
(
a
:
A
,
b
:
B
)
{
a
==
b
a
==
b
as
I
}