blob: d91661b683090ec058147137225833b08f8be115 [file] [log] [blame]
import java.util.*;
abstract class A implements Iterable<String> {}
class Test {
void test(A it) {
for(Integer s : it) {
}
}
}