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

9 lines
147 B
Plaintext
Vendored

// WITH_RUNTIME
class Test {
@Throws(RuntimeException::class)
fun a() {
throw myError()
}
}
fun myError() = RuntimeException()