Files
kotlin-fork/idea/testData/inspectionsLocal/replaceAssertBooleanWithAssertEquality/assertFalseEQEQ.kt
T
2018-08-14 14:11:14 +03:00

9 lines
127 B
Kotlin
Vendored

// RUNTIME_WITH_KOTLIN_TEST
import kotlin.test.*
fun foo() {
val a = "a"
val b = "b"
assertFalse<caret>(a == b)
}