From: jhugunin Date: Sun, 27 Apr 2003 23:31:06 +0000 (+0000) Subject: fix and tests for X-Git-Tag: V1_1_0_RC2~146 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=7d144321837cac05cdbe2a30323d670dfcc9809a;p=aspectj.git 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 --- diff --git a/tests/ajcTests.xml b/tests/ajcTests.xml index ebaedd66c..6b952b04a 100644 --- a/tests/ajcTests.xml +++ b/tests/ajcTests.xml @@ -5878,4 +5878,24 @@ + + + + + + + + + + + + + + + + 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)); +} diff --git a/tests/jimTests.xml b/tests/jimTests.xml index 6de1c507c..0ebd8cd50 100644 --- a/tests/jimTests.xml +++ b/tests/jimTests.xml @@ -1,11 +1,16 @@ - +