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