From 4b066194988a634c4da4193599ac4e0132cd3bd2 Mon Sep 17 00:00:00 2001 From: wisberg Date: Wed, 12 Mar 2003 20:56:52 +0000 Subject: @testcase type not imported in aspect (similar scenario to prior, but different stack trace) --- tests/ajcTestsFailing.xml | 7 +++++++ tests/errors/TypeInAspectNotImportedCE.java | 7 +++++++ 2 files changed, 14 insertions(+) create mode 100644 tests/errors/TypeInAspectNotImportedCE.java diff --git a/tests/ajcTestsFailing.xml b/tests/ajcTestsFailing.xml index 19a8c048f..4f31f4087 100644 --- a/tests/ajcTestsFailing.xml +++ b/tests/ajcTestsFailing.xml @@ -56,4 +56,11 @@ + + + + + + diff --git a/tests/errors/TypeInAspectNotImportedCE.java b/tests/errors/TypeInAspectNotImportedCE.java new file mode 100644 index 000000000..f79de07f3 --- /dev/null +++ b/tests/errors/TypeInAspectNotImportedCE.java @@ -0,0 +1,7 @@ + +class C { void m() { } } + +/** @testcase type not imported in aspect */ +aspect A { + Rectangle C.bounds = null; // CE 6 +} -- cgit v1.2.3