You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

FieldCopy.java 148B

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