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.

MethodCall.java 295B

123456789101112131415
  1. public class MethodCall {
  2. // static String abc = "hello world";
  3. public static void main(String []argv) {
  4. System.out.println(Inner.m());
  5. }
  6. }
  7. aspect X {
  8. public static class MethodCall.Inner {
  9. static int number = 42;
  10. public static Integer m() {
  11. return number;
  12. }
  13. }
  14. }