summaryrefslogtreecommitdiffstats
path: root/tests/bugs/BadBindingError.java
diff options
context:
space:
mode:
authorjhugunin <jhugunin>2003-04-27 23:31:06 +0000
committerjhugunin <jhugunin>2003-04-27 23:31:06 +0000
commit7d144321837cac05cdbe2a30323d670dfcc9809a (patch)
treeee2b57fa204391a285b371c4d6a1c57515964ba1 /tests/bugs/BadBindingError.java
parent8d793a3f9960f101a4cae59b959ce612f3fef4c9 (diff)
downloadaspectj-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.java8
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));
+}