blob: 5afe2fcf146cfd1ed3de7b46ce8507983a8823a1 [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);}
}
}