blob: 87a912a7609625cc72add8e0eb9baf035377919e [file] [log] [blame]
package test0011;
@interface Foo {
}
public class X {
public void bar(String[][] args) {
for (@Foo final String s[] : args) {System.out.println(s);}
}
}