02c17378b1
#KT-33951 Fixed
13 lines
254 B
Kotlin
Vendored
13 lines
254 B
Kotlin
Vendored
// "Replace with 'str.isEmpty()'" "true"
|
|
// WITH_RUNTIME
|
|
|
|
import Bar.bar
|
|
|
|
fun foo(s: String) {
|
|
<caret>bar(s)
|
|
}
|
|
|
|
object Bar {
|
|
@Deprecated(message = "", replaceWith = ReplaceWith("str.isEmpty()"))
|
|
fun bar(str: String): Boolean = str.isEmpty()
|
|
} |