aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs153/pr145442/MissingLineNumbers.java
blob: 08cca8fa12f40e3f91dc8b0c777aafb54741aa52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
public class MissingLineNumbers {
  public static void main(String []argv) {
    new MissingLineNumbers().foo();
  }

  public void foo() {
    System.err.println("hello");
    System.err.println("world");
  }
}

aspect X {
  void around(): call(* foo(..)) {
    new RuntimeException().printStackTrace();
  }
}