Moved test data into subfolders
This commit is contained in:
+16
@@ -0,0 +1,16 @@
|
||||
// "Replace with 'newFun()'" "true"
|
||||
|
||||
class C {
|
||||
@deprecated("", ReplaceWith("newFun()"))
|
||||
fun oldFun() {
|
||||
newFun()
|
||||
}
|
||||
}
|
||||
|
||||
fun newFun(){}
|
||||
|
||||
fun foo() {
|
||||
getC().<caret>oldFun()
|
||||
}
|
||||
|
||||
fun getC(): C = C()
|
||||
Reference in New Issue
Block a user