blob: 38c1d0fab9266bd8233b188cc43f2eeaa17a43d2 [file]
// DIAGNOSTICS: -UNUSED_PARAMETER
class My {
constructor(arg: Int?) {
run {
var x = arg
if (x == null) return@run
<!DEBUG_INFO_SMARTCAST!>x<!>.hashCode()
}
}
}