Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2a568be17b8f4a9af8f61b27d156c07d37c12fdc
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
comparisonOfGenericInterfaceWithGenericClass.kt
blob: 9fc13b851d69c935e31cfaabc7d13e43e089a635 [
file
]
// ISSUE: KT-47884
interface
A
<
X
>
class
B
<
T
>
fun foo
(
a
:
A
<*>,
b
:
B
<*>):
Boolean
=
a
==
b
fun bar
(
a
:
A
<*>,
b
:
B
<*>):
Boolean
=
a
===
b