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

7 lines
106 B
Kotlin
Vendored

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