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

6 lines
117 B
Plaintext
Vendored

// WITH_RUNTIME
@Throws(Throwable::class)
fun a(b: Boolean) {
throw if (b) RuntimeException() else Exception()
}