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