summaryrefslogtreecommitdiffstats
path: root/tests/bugs150/pr109728.java
blob: 5287087b0bb7a8233217e1d7a7b351364afdc228 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
public class pr109728 {

  public static void main(String[]argv) {
    new pr109728().m().clone();
  }

  int[] m() { return null; }
}



aspect X {
  before(): call(* *(..)) {}
}