Files
kotlin-fork/idea/testData/intentions/deprecatedCallableAddReplaceWith/DeclarationInside.kt
T
Valentin Kipyatkov b6eda35345 TODOs
2015-05-27 16:15:55 +03:00

10 lines
131 B
Kotlin
Vendored

// IS_APPLICABLE: false
<caret>@deprecated("")
fun foo(p: Int) {
if (p > 0) {
val v = p + 1
}
}
fun bar(p: Int){}