Files
kotlin-fork/idea/testData/intentions/convertAssertToIf/lambdaVariable.kt.after
T
2014-04-15 19:26:39 -04:00

7 lines
109 B
Plaintext

// WITH_RUNTIME
fun foo() {
val f = { "text" }
if (!true) {
throw AssertionError(f())
}
}