blob: e0d9d2ed91ed69d8b8620a2bc29d008a1cf18dec [file] [log] [blame]
// "Replace with collect" "true"
import java.util.ArrayList;
import java.util.List;
class Sample {
List<String> foo = new ArrayList<>();
String foo(){
Sample sm = new Sample();
for (String s : fo<caret>o) {
sm.foo.add(s);
}
return null;
}
}