blob: b1cef27650e2eff85ed71a8ad243513a41b55075 [file] [log] [blame]
// "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()
}