aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs150
diff options
context:
space:
mode:
authoraclement <aclement>2005-11-02 16:16:29 +0000
committeraclement <aclement>2005-11-02 16:16:29 +0000
commitade32bc38c17b38811b617f54828feb43a4b7048 (patch)
treeaa53047e5b454704ac84e6aeab7e664f9431ac76 /tests/bugs150
parent62d16d52c25f7b5ff389ee2de603bbb3dc186c8e (diff)
downloadaspectj-ade32bc38c17b38811b617f54828feb43a4b7048.tar.gz
aspectj-ade32bc38c17b38811b617f54828feb43a4b7048.zip
test and fix for pr114744
Diffstat (limited to 'tests/bugs150')
-rw-r--r--tests/bugs150/pr114744.aj7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/bugs150/pr114744.aj b/tests/bugs150/pr114744.aj
new file mode 100644
index 000000000..735051f05
--- /dev/null
+++ b/tests/bugs150/pr114744.aj
@@ -0,0 +1,7 @@
+public aspect pr114744 {
+ Class<? extends pr114744> pr114744.cl;
+
+ void foo() throws Exception {
+ pr114744 ci = cl.newInstance();
+ }
+}