Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
codegen
/
box
/
specialBuiltins
/
throwable.kt
blob: 42c0d38211322dd8eb5d285244fa633d1f764247 [
file
]
fun box
():
String
{
try
{
throw
Throwable
(
"OK"
,
null
)
}
catch
(
t
:
Throwable
)
{
if
(
t
.
cause
!=
null
)
return
"fail 1"
return
t
.
message
!!
}
return
"fail 2"
}