2125c42328
Removes intention version of the same thing Includes some optimization of 'Deprecated' annotation detection
6 lines
125 B
Plaintext
Vendored
6 lines
125 B
Plaintext
Vendored
@Deprecated("", ReplaceWith("bar(\"\$p \${p + 1} $0\")"))
|
|
fun foo(p: Int) {
|
|
bar("$p ${p + 1} $0")
|
|
}
|
|
|
|
fun bar(s: String){} |