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

8 lines
130 B
Plaintext
Vendored

// "Replace with '1'" "true"
fun foo(): Int {
@Deprecated("", ReplaceWith("1"))
fun localFun() = 1
return <caret>1
}