Files
kotlin-fork/idea/resources/intentionDescriptions/ConvertIfWithThrowToAssertIntention/before.kt.template
T

5 lines
85 B
Plaintext

fun foo() {
<spot>if (true) {
throw AssertionError("text")
}</spot>
}