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

9 lines
159 B
Kotlin
Vendored

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