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.

pr111481.aj 262B

123456789101112131415
  1. public class pr111481 {
  2. public static void main(String []argv) {
  3. new pr111481(new Object[]{"a","b","c"});
  4. new pr111481("a","b","c");
  5. }
  6. }
  7. aspect A {
  8. public pr111481.new(Object... names) {
  9. this();
  10. System.out.println(names[0]);
  11. }
  12. }