blob: ef045bf58f88c41e18d7a40ec726f7bfc3a6cc3c [file]
// FIR_IDENTICAL
// From KT-13324: always succeeds
val x = null as String?
// From KT-260: sometimes succeeds
fun foo(a: String?): Int? {
val c = a as? Int?
return c
}