summaryrefslogtreecommitdiffstats
path: root/tests/errors
diff options
context:
space:
mode:
authorwisberg <wisberg>2003-03-12 20:56:52 +0000
committerwisberg <wisberg>2003-03-12 20:56:52 +0000
commit4b066194988a634c4da4193599ac4e0132cd3bd2 (patch)
tree4e98f60564ebfb71c48350c1b2ac5a18399b6051 /tests/errors
parentc6d8c34761c20477a3cf6fb62d8523fd476d85df (diff)
downloadaspectj-4b066194988a634c4da4193599ac4e0132cd3bd2.tar.gz
aspectj-4b066194988a634c4da4193599ac4e0132cd3bd2.zip
@testcase type not imported in aspect
(similar scenario to prior, but different stack trace)
Diffstat (limited to 'tests/errors')
-rw-r--r--tests/errors/TypeInAspectNotImportedCE.java7
1 files changed, 7 insertions, 0 deletions
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
+}