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.

Diamond.java 207B

1234567891011121314
  1. import java.util.*;
  2. public class Diamond {
  3. public static void main(String []argv) {
  4. }
  5. }
  6. aspect Foo {
  7. before(): execution(* *(..)) {
  8. // in advice
  9. List<String> ls = new ArrayList<>();
  10. }
  11. }