Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
ir
/
irText
/
expressions
/
catchParameterAccess.kt.txt
blob: 6f3f168e81e43adceb279d6a2a22fa271aaf5102 [
file
]
fun test(f: Function0<Unit>) {
return try { // BLOCK
f.invoke()
}
catch (e: Exception){ // BLOCK
throw e
}
}