blob: f891067df77bdc721563f63c216d3151c30d4765 [file]
// WITH_STDLIB
class C {
var x: Int = 0
}
fun test(с: C?, a: Any) {
с?.x = if (a is String) 0 else throw Exception();
<!DEBUG_INFO_SMARTCAST!>a<!>.<!DEPRECATION!>toUpperCase<!>()
}
fun main(args: Array<String>) {
test(null, 1)
}