// "Replace with 'str.isEmpty()'" "true" // WITH_RUNTIME import Bar.bar fun foo(s: String) { bar(s) } object Bar { @Deprecated(message = "", replaceWith = ReplaceWith("str.isEmpty()")) fun bar(str: String): Boolean = str.isEmpty() }