Files
kotlin/idea/testData/quickfix/deprecatedSymbolUsage/replaceCallWithReceiver.kt.after
2015-09-04 18:19:31 +03:00

10 lines
142 B
Plaintext
Vendored

// "Replace with 'this'" "true"
class C {
@Deprecated("", ReplaceWith("this"))
fun oldFun(): C = this
}
fun foo() {
<caret>C()
}