Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
417088e15084daef5c72bc17ea66d3cf3c026c33
/
.
/
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"
}