diff options
author | jhugunin <jhugunin> | 2003-04-27 23:31:06 +0000 |
---|---|---|
committer | jhugunin <jhugunin> | 2003-04-27 23:31:06 +0000 |
commit | 7d144321837cac05cdbe2a30323d670dfcc9809a (patch) | |
tree | ee2b57fa204391a285b371c4d6a1c57515964ba1 /tests/bugs/BadBindingError.java | |
parent | 8d793a3f9960f101a4cae59b959ce612f3fef4c9 (diff) | |
download | aspectj-7d144321837cac05cdbe2a30323d670dfcc9809a.tar.gz aspectj-7d144321837cac05cdbe2a30323d670dfcc9809a.zip |
fix and tests for
Bugzilla Bug 30663
lame error message: "negation doesn't allow binding"
and
Bugzilla Bug 36329
The compiler crashes when using aspect libraries created without using -noweave
Diffstat (limited to 'tests/bugs/BadBindingError.java')
-rw-r--r-- | tests/bugs/BadBindingError.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/bugs/BadBindingError.java b/tests/bugs/BadBindingError.java new file mode 100644 index 000000000..0f1e111e4 --- /dev/null +++ b/tests/bugs/BadBindingError.java @@ -0,0 +1,8 @@ +// Bugzilla Bug 30663 +//lame error message: "negation doesn't allow binding" + +import org.aspectj.testing.Tester; + +public aspect BadBindingError { + pointcut p(int i): call(void f(i)); +} |