blob: 3435c1f9d5ce94d4f8c9bae0e4404e65fff3b45e [file]
// RUN_PIPELINE_TILL: BACKEND
// DIAGNOSTICS: -UNUSED_PARAMETER
class My {
constructor(arg: Int?) {
run {
var x = arg
if (x == null) return@run
x.hashCode()
}
}
}
/* GENERATED_FIR_TAGS: classDeclaration, equalityExpression, ifExpression, lambdaLiteral, localProperty, nullableType,
propertyDeclaration, secondaryConstructor, smartcast */