Files
kotlin-fork/idea/testData/inspectionsLocal/replaceGuardClauseWithFunctionCall/require/hasElse.kt.after
T
2019-07-22 20:49:20 +03:00

5 lines
83 B
Plaintext
Vendored

// WITH_RUNTIME
fun test(flag: Boolean) {
<caret>require(flag)
println(1)
}