blob: e476d18f290c004ee44a12b55b24cb225810b861 [file]
// RUN_PIPELINE_TILL: FRONTEND
// CHECK_TYPE
interface A
interface B : A
operator fun B.plus(b: B) = if (this == b) b else this
fun foo(a: A): B {
val result = (a as B) + a
checkSubtype<B>(a)
return result
}
fun bar(a: A, b: B): B {
val result = b + (a as B)
checkSubtype<B>(a)
return result
}
/* GENERATED_FIR_TAGS: additiveExpression, asExpression, classDeclaration, equalityExpression, funWithExtensionReceiver,
functionDeclaration, functionalType, ifExpression, infix, interfaceDeclaration, localProperty, nullableType, operator,
propertyDeclaration, smartcast, thisExpression, typeParameter, typeWithExtension */