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,14 @@
// "Replace with 's.filter { it != c }'" "true"
class X {
@deprecated("", ReplaceWith("s.filter { it != c }"))
fun oldFun(s: String): CharSequence = s.filter { it != c }
val c = 'x'
}
fun foo(x: X?, s: String) {
bar(x?.<caret>let { x -> s.filter { it != x.c } })
}
fun bar(s: CharSequence?){}