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

9 lines
171 B
Kotlin
Vendored

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