Files
kotlin-fork/idea/testData/intentions/swapStringEqualsIgnoreCase/equalsIgnoreCase.kt
T
2017-08-18 14:34:14 +03:00

9 lines
129 B
Kotlin
Vendored

// WITH_RUNTIME
fun test() {
"ABC".equa<caret>ls(Foo().bar(), ignoreCase = true)
}
class Foo {
fun bar(): String = ""
}