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

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()
}