Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/lambdaDeclaresAndModifiesInSecondary.fir.kt
T

10 lines
196 B
Kotlin
Vendored

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