Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithStdLib
/
comparingDifferentSubclassesCommonInterface.kt
blob: 1eb51c77320c45c44ad4823d8969b6aa7ed11d20 [
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
<!
EQUALITY_NOT_APPLICABLE
!>
a
===
b
<!>
a
===
b
as
I
}