Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
847a2ced07911ac5a943ed41390d054d0e81aa1f
/
.
/
compiler
/
testData
/
codegen
/
box
/
try
/
try2.kt
blob: 5083700cb98aff3bc2a2738dc3dc5763c03c3f89 [
file
]
// WITH_STDLIB
import
kotlin
.
test
.*
fun box
():
String
{
val x
=
try
{
throw
Error
()
5
}
catch
(
e
:
Throwable
)
{
6
}
assertEquals
(
6
,
x
)
return
"OK"
}