summaryrefslogtreecommitdiffstats
path: root/tests/bugs153/pr145442/MissingLineNumbers.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs153/pr145442/MissingLineNumbers.java')
-rw-r--r--tests/bugs153/pr145442/MissingLineNumbers.java18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/bugs153/pr145442/MissingLineNumbers.java b/tests/bugs153/pr145442/MissingLineNumbers.java
new file mode 100644
index 000000000..08cca8fa1
--- /dev/null
+++ b/tests/bugs153/pr145442/MissingLineNumbers.java
@@ -0,0 +1,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();
+ }
+}
+
+