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