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.

StaticIntroducedReferences.java 236B

1234567891011121314
  1. public class StaticIntroducedReferences {
  2. }
  3. abstract aspect SuperA {
  4. static void m() {}
  5. static int i = 0;
  6. }
  7. aspect A extends SuperA {
  8. public static void StaticIntroducedReferences.main(String[] args) {
  9. i++;
  10. m();
  11. }
  12. }