Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2f9ad0c0bf79eab445d91c2baa5ab471640e811f
/
.
/
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
}