10 lines
178 B
Plaintext
Vendored
10 lines
178 B
Plaintext
Vendored
@deprecated("", ReplaceWith("if (p > 0) bar1(p) else bar2(p)"))
|
|
fun foo(p: Int) {
|
|
if (p > 0)
|
|
bar1(p)
|
|
else
|
|
bar2(p)
|
|
}
|
|
|
|
fun bar1(p: Int){}
|
|
fun bar2(p: Int){} |