Moved test data into subfolders
This commit is contained in:
+14
@@ -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?){}
|
||||
Reference in New Issue
Block a user