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