Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/localVar.kt
T
2015-05-27 16:15:47 +03:00

8 lines
135 B
Kotlin
Vendored

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