blob: 1d40f4082444b877f7b1c428ee0e383a62ad31d6 [file] [log] [blame]
import java.util.*;
class Test {
List<String> lst;
void foo() {
for (String s : lst) {
System.out.println(s);
}
}
}