2125c42328
Removes intention version of the same thing Includes some optimization of 'Deprecated' annotation detection
10 lines
145 B
Plaintext
Vendored
10 lines
145 B
Plaintext
Vendored
package pack
|
|
|
|
import dependency.D
|
|
|
|
@Deprecated("", ReplaceWith("bar(D.value)", "dependency.D"))
|
|
fun foo() {
|
|
bar(D.value)
|
|
}
|
|
|
|
fun bar(p: Int){} |