diff options
author | aclement <aclement> | 2007-10-18 11:02:00 +0000 |
---|---|---|
committer | aclement <aclement> | 2007-10-18 11:02:00 +0000 |
commit | 499b8bcb0e89b39a63008fc68b44df9ed39d0750 (patch) | |
tree | 748080f3a5b8f4915cc5b1014bbac41ce4d8236f /tests/bugs154/pr166084 | |
parent | 7d21be99acce64728f70e3f4b26bc5390a658672 (diff) | |
download | aspectj-499b8bcb0e89b39a63008fc68b44df9ed39d0750.tar.gz aspectj-499b8bcb0e89b39a63008fc68b44df9ed39d0750.zip |
these tests are now for 1.5.4, not 1.6.0
Diffstat (limited to 'tests/bugs154/pr166084')
-rw-r--r-- | tests/bugs154/pr166084/Simple.java | 14 | ||||
-rw-r--r-- | tests/bugs154/pr166084/X.java | 3 | ||||
-rw-r--r-- | tests/bugs154/pr166084/simple.jar | bin | 0 -> 579 bytes |
3 files changed, 17 insertions, 0 deletions
diff --git a/tests/bugs154/pr166084/Simple.java b/tests/bugs154/pr166084/Simple.java new file mode 100644 index 000000000..c5992b4ee --- /dev/null +++ b/tests/bugs154/pr166084/Simple.java @@ -0,0 +1,14 @@ +public class Simple { + public static void main(String []argv) { + new Simple().m(); + } + + public void m() { + int i = 1; + System.out.println(i); + } +} + +aspect X { + before(): call(* println(..)) {} +} diff --git a/tests/bugs154/pr166084/X.java b/tests/bugs154/pr166084/X.java new file mode 100644 index 000000000..e60c2c397 --- /dev/null +++ b/tests/bugs154/pr166084/X.java @@ -0,0 +1,3 @@ +aspect X { + before(): call(* println(..)) {} +} diff --git a/tests/bugs154/pr166084/simple.jar b/tests/bugs154/pr166084/simple.jar Binary files differnew file mode 100644 index 000000000..3151ded97 --- /dev/null +++ b/tests/bugs154/pr166084/simple.jar |