aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs183/445395/Code.java
blob: 647bc04011884ee2dea6f6f111c708b3119b16e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import java.util.*;

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

aspect X {
  void around(): execution(* m(..)) {
    Arrays.asList(4, 5, 6).forEach((i) -> { System.out.println(i);});
  }
}