Files
kotlin-fork/idea/testData/intentions/addThrowsAnnotation/hasThrowsWithDifferentClassArgument3.kt
T

9 lines
180 B
Kotlin
Vendored

// WITH_RUNTIME
class FooException : Exception()
class BarException : Exception()
@Throws(exceptionClasses = [BarException::class])
fun test() {
<caret>throw FooException()
}