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

8 lines
139 B
Kotlin
Vendored

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