diff options
author | aclement <aclement> | 2009-02-01 03:46:01 +0000 |
---|---|---|
committer | aclement <aclement> | 2009-02-01 03:46:01 +0000 |
commit | 3e12b98e66ae5b626a6748e46e30a3c49f809f92 (patch) | |
tree | aab6ef15f42c7628d13600e9f0bc202ec0c30f12 /tests/multiIncremental/PR148285_2/inc2 | |
parent | c4a0adb1093ec5112c60a186c7659ba602910c1c (diff) | |
download | aspectj-3e12b98e66ae5b626a6748e46e30a3c49f809f92.tar.gz aspectj-3e12b98e66ae5b626a6748e46e30a3c49f809f92.zip |
148285: test and fixes
Diffstat (limited to 'tests/multiIncremental/PR148285_2/inc2')
-rw-r--r-- | tests/multiIncremental/PR148285_2/inc2/A.aj | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/multiIncremental/PR148285_2/inc2/A.aj b/tests/multiIncremental/PR148285_2/inc2/A.aj new file mode 100644 index 000000000..0eb6c12ee --- /dev/null +++ b/tests/multiIncremental/PR148285_2/inc2/A.aj @@ -0,0 +1,11 @@ +public aspect A { + + before() : execution(* *.*(..)) {} + +} + +//class C { +// +// public void m() {} +// +//} |