blob: 4c071b0e0d3965037f9f46530893fa6b3198a91c [file]
// RUN_PIPELINE_TILL: FRONTEND
// CHECK_TYPE
infix fun Int.compareTo(o: Int) = 0
fun foo(a: Number): Int {
val result = (a as Int) compareTo a
checkSubtype<Int>(a)
return result
}
fun bar(a: Number): Int {
val result = 42 compareTo (a as Int)
checkSubtype<Int>(a)
return result
}
/* GENERATED_FIR_TAGS: asExpression, classDeclaration, funWithExtensionReceiver, functionDeclaration, functionalType,
infix, integerLiteral, localProperty, nullableType, propertyDeclaration, smartcast, typeParameter, typeWithExtension */