blob: 8fcb65ea982fbd3b01c75dbbc6397d82b9bad9a1 [file]
// RUN_PIPELINE_TILL: FRONTEND
// CHECK_TYPE
fun foo(x: Number, y: Int) {
when (x) {
x as Int -> checkSubtype<Int>(x)
y -> {}
else -> {}
}
checkSubtype<Int>(x)
}
fun bar(x: Number) {
when (x) {
x as Int -> checkSubtype<Int>(x)
else -> {}
}
checkSubtype<Int>(x)
}
fun whenWithoutSubject(x: Number) {
when {
(x as Int) == 42 -> checkSubtype<Int>(x)
else -> {}
}
checkSubtype<Int>(x)
}
/* GENERATED_FIR_TAGS: asExpression, classDeclaration, equalityExpression, funWithExtensionReceiver, functionDeclaration,
functionalType, infix, integerLiteral, nullableType, smartcast, typeParameter, typeWithExtension, whenExpression,
whenWithSubject */