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

9 lines
150 B
Kotlin
Vendored

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