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.

PR62475.java 194B

123456789101112131415161718
  1. aspect Aspect {
  2. public int A.x = z; // okay, z is visible.
  3. }
  4. class A {
  5. int z = 0;
  6. }
  7. public class PR62475 {
  8. public static void main(String[] args) {
  9. System.out.println(new A().x);
  10. }
  11. }