blob: f7d27409fa25b6292cae264f6fcccae444a1fa24 [file] [log] [blame]
// "Replace with forEach" "true"
import java.util.ArrayList;
import java.util.List;
class Sample {
List<String> foo = new ArrayList<>();
{
foo.forEach(this::bar);
}
void bar(String s){}
}