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

8 lines
143 B
Kotlin
Vendored

// INTENTION_TEXT: "Add '@Throws' annotation"
// WITH_RUNTIME
class FooException : Exception()
fun test() {
<caret>throw FooException()
}