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

5 lines
98 B
Kotlin
Vendored

// WITH_RUNTIME
fun a(b: Boolean) {
<caret>throw if (b) RuntimeException() else Exception()
}