blob: da4a0b06a015b2accf42ce46e9ec9bdea4743cb7 [file] [log] [blame]
import java.util.List;
class Foreach {
void foo (Foreach e) {
for (String s : e.f()) {}
}
List<? extends String> f () {
return null;
}
}