| // RUN_PIPELINE_TILL: BACKEND | |
| // 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 = <!EQUALITY_NOT_APPLICABLE_WARNING!>a === b<!> | |
| /* GENERATED_FIR_TAGS: classDeclaration, equalityExpression, functionDeclaration, interfaceDeclaration, nullableType, | |
| starProjection, typeParameter */ |