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

7 lines
119 B
Kotlin

// IS_APPLICABLE: false
// WITH_RUNTIME
fun foo() {
<caret>assert(true, "")
}
fun assert(b: Boolean, s: String) {}