Files
Anna Kozlova cf6ef89010 [java] [highlighting] don't report inferred wildcards (IDEA-294000)
GitOrigin-RevId: a17933972fc5cb31e03e3b7a145f5d721e356d25
2022-05-13 21:32:58 +00:00

7 lines
169 B
Java

class MyTest {
static <T extends Iterable<?>> void print(T collection) {
for (var item : collection) {
System.out.println(item);
}
}
}