Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
deprecatedCallableAddReplaceWith
/
If.kt
blob: 665893a8336715802e795b3e6b020a3e50c99eb5 [
file
] [
log
] [
blame
]
<caret>
@Deprecated("")
fun foo(p: Int) {
if (p > 0)
bar1(p)
else
bar2(p)
}
fun bar1(p: Int){}
fun bar2(p: Int){}