Files
kotlin-fork/idea/testData/intentions/deprecatedCallableAddReplaceWith/QualifiedCall.kt.after
T
2015-05-27 16:15:50 +03:00

6 lines
101 B
Plaintext
Vendored

@deprecated("", <caret>ReplaceWith("s.bar()"))
fun foo(s: String) {
s.bar()
}
fun String.bar(){}