From 5c5803307fcc99fa0f830b55000adadef3d857c9 Mon Sep 17 00:00:00 2001 From: aclement Date: Tue, 11 Jul 2006 07:56:23 +0000 Subject: test for 121805. commented out test for 145442 (not recreated yet) --- tests/bugs153/pr145442/MissingLineNumbers.java | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 tests/bugs153/pr145442/MissingLineNumbers.java (limited to 'tests/bugs153/pr145442') 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(); + } +} + + -- cgit v1.2.3