blob: 2bbc5b289a95dbbdefdab617d99bed40df0dc4f6 [file] [log] [blame]
package test0010;
@interface Foo {
}
public class X {
public static void main(String[] args) {
for (@Foo final String s : args) {System.out.println(s);}
}
}