Moved test data into subfolders

This commit is contained in:
Valentin Kipyatkov
2015-05-21 14:12:58 +03:00
parent 6ddb208bb7
commit f8a4d9bf0b
86 changed files with 0 additions and 0 deletions
@@ -0,0 +1,12 @@
// "Replace with 'newFun(p1, p2.toString(), p3, p4, p5)'" "true"
interface I {
@deprecated("", ReplaceWith("newFun(p1, p2.toString(), p3, p4, p5)"))
fun oldFun(p1: String, p2: Int = 0, p3: String? = null, p4: String = p1, p5: Int = p2)
fun newFun(p1: String, p2: String, p3: String?, p4: String, p5: Int)
}
fun foo(i: I) {
i.<caret>oldFun("a")
}