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