diff options
author | aclement <aclement> | 2006-07-11 07:56:23 +0000 |
---|---|---|
committer | aclement <aclement> | 2006-07-11 07:56:23 +0000 |
commit | 5c5803307fcc99fa0f830b55000adadef3d857c9 (patch) | |
tree | 85913446e98a1e12fa0f50b0c7b5dd5a29fab139 /tests/bugs153/pr145442 | |
parent | c38a878e00f5fa4bb51ec68d9cb4c292402aa14e (diff) | |
download | aspectj-5c5803307fcc99fa0f830b55000adadef3d857c9.tar.gz aspectj-5c5803307fcc99fa0f830b55000adadef3d857c9.zip |
test for 121805. commented out test for 145442 (not recreated yet)
Diffstat (limited to 'tests/bugs153/pr145442')
-rw-r--r-- | tests/bugs153/pr145442/MissingLineNumbers.java | 18 |
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(); + } +} + + |