Files
kotlin-fork/idea/testData/intentions/deprecatedCallableAddReplaceWith/DeclarationInside.kt
T
2015-09-04 18:19:31 +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){}