10 lines
196 B
Kotlin
Vendored
10 lines
196 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
// DISABLE-ERRORS
|
|
class FooException : Exception()
|
|
|
|
class BarException : Exception()
|
|
|
|
@Throws(exceptionClasses = BarException::class)
|
|
fun test() {
|
|
<caret>throw FooException()
|
|
} |