blob: 0032ef04397fa5eaff193f13688a2385ea94e417 [file]
// 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 */