|
Relates :
|
|
|
Relates :
|
This code:
public class IterableTest {
interface Data extends Iterable<String> { }
void test(Iterable<? extends Data> t) {
for(Object a: t.iterator().next());
}
}
used to compile with 1.8.0 b82, it doesn't compile with TL.
|