Files
kotlin-fork/idea/testData/intentions/deprecatedCallableAddReplaceWith/If.kt
T
2015-09-04 18:19:31 +03:00

10 lines
137 B
Kotlin
Vendored

<caret>@Deprecated("")
fun foo(p: Int) {
if (p > 0)
bar1(p)
else
bar2(p)
}
fun bar1(p: Int){}
fun bar2(p: Int){}