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

7 lines
118 B
Plaintext
Vendored

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