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