8 lines
135 B
Kotlin
Vendored
8 lines
135 B
Kotlin
Vendored
// "Replace with '1'" "true"
|
|
|
|
fun foo(): Int {
|
|
@deprecated("", ReplaceWith("1"))
|
|
val localVar = 1
|
|
|
|
return <caret>localVar
|
|
} |