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