1 package test3; 2 3 class FieldCopy2 { 4 int bar; 5 } 6 7 public class FieldCopy { 8 public @interface Test { 9 } 10 11 @Test private static int foo; 12 } 13