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