Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0c35e97a8dc1b95945d4b0bc57de45a0550682bc
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithStdLib
/
comparingDifferentSubclassesCommonInterface.kt
blob: abcba6139703995da4f42533555dfd552a653994 [
file
]
// ISSUE: KT-54473
interface
I
class
A
:
I
class
B
:
I
fun test
(
a
:
A
,
b
:
B
)
{
<!
EQUALITY_NOT_APPLICABLE
!>
a
==
b
<!>
a
==
b
as
I
}