9 lines
159 B
Kotlin
Vendored
9 lines
159 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
class FooException : Exception()
|
|
|
|
class BarException : Exception()
|
|
|
|
@Throws(BarException::class)
|
|
fun test() {
|
|
<caret>throw FooException()
|
|
} |