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.

CodeTwo.java 255B

12345678910111213
  1. import java.util.*;
  2. public aspect CodeTwo {
  3. before(): execution(* CodeTwo.*(..)) && args(List<? extends Number>) {}
  4. void m(List<Integer> li) {}
  5. public void callm() {
  6. List<? extends Number> lqn = new ArrayList<Number>();
  7. // m(lqn);
  8. }
  9. }