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