Files
kotlin-fork/idea/resources/intentionDescriptions/ConvertAssertToIfWithThrowIntention/after.kt.template
T
2014-04-17 03:20:14 +04:00

6 lines
87 B
Plaintext

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