jdk-24/test/langtools/tools/javac/patterns/ForEachTestAllAnalyzers.java

12 lines
275 B
Java
Raw Normal View History

/*
* @test /nodynamiccopyright/
* @summary
* @enablePreview
* @compile -XDfind=all ForEachTestAllAnalyzers.java
*/
public class ForEachTestAllAnalyzers {
private void test(Iterable<? extends R> l) {
for (R(Object a) : l) { }
}
record R(Object a) {}
}