// FIR_IDENTICAL fun F.bar() {} inline fun test_1(x: Any) { if (x is T) { x.bar() } } fun test_2(x: Any?) { if (x is CharSequence) { x.bar() } }