Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
417088e15084daef5c72bc17ea66d3cf3c026c33
/
.
/
compiler
/
testData
/
codegen
/
box
/
exceptions
/
extend0.kt
blob: e955aa39264efb6aa6a34cf50dcb76c4af796c70 [
file
]
// WITH_STDLIB
import
kotlin
.
test
.*
class
C
:
Exception
(
"OK"
)
fun box
():
String
{
try
{
throw
C
()
}
catch
(
e
:
Throwable
)
{
return
e
.
message
!!
}
return
"FAIL"
}