Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
ir
/
irText
/
expressions
/
tryCatch.kt
blob: 4c5b3fa74d6b36ca8ba87c7ee2dd18cc609144b1 [
file
]
// FIR_IDENTICAL
fun println
()
{}
fun test1
()
{
try
{
println
()
}
catch
(
e
:
Throwable
)
{
println
()
}
finally
{
println
()
}
}
fun test2
():
Int
{
return
try
{
println
()
100
42
}
catch
(
e
:
Throwable
)
{
println
()
101
24
}
finally
{
println
()
102
555
}
}