blob: 83c18bbbab6951536dcf3e9b31951582c3e60ede [file] [log] [blame]
package p;
import java.util.List;
class A {
void m(List<String> arg) {
for (String /*[*/thing/*]*/ : arg) {
String itch= thing;
}
}
}