// WITH_STDLIB class C { var x: Int = 0 } fun test(с: C?, a: Any) { с?.x = if (a is String) 0 else throw Exception(); a.toUpperCase() } fun main(args: Array) { test(null, 1) }