blob: 787c2a312e5ced2d7587ccf23e9a70897d5733b7 [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);}
}
}