summaryrefslogtreecommitdiffstats
path: root/tests/bugs150
diff options
context:
space:
mode:
authoracolyer <acolyer>2005-08-31 13:48:16 +0000
committeracolyer <acolyer>2005-08-31 13:48:16 +0000
commitb953c0347a539890d9e1f87feabc78a3d687c50f (patch)
tree6e0f85d05777630a255f4586034253f3d6e7fc50 /tests/bugs150
parent766509d831e8a8b6f0032bf7e726aa3e6fd4c745 (diff)
downloadaspectj-b953c0347a539890d9e1f87feabc78a3d687c50f.tar.gz
aspectj-b953c0347a539890d9e1f87feabc78a3d687c50f.zip
test for pr95992
Diffstat (limited to 'tests/bugs150')
-rw-r--r--tests/bugs150/pr95992.aj14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/bugs150/pr95992.aj b/tests/bugs150/pr95992.aj
new file mode 100644
index 000000000..fb60cdb9e
--- /dev/null
+++ b/tests/bugs150/pr95992.aj
@@ -0,0 +1,14 @@
+interface Base<T> {
+ static interface Inner {
+ }
+}
+class Test<T extends Test.InnerTest> implements Base<T> {
+ static class InnerTest implements Inner {
+ }
+}
+
+aspect ForceWeaverToUnpackAllTypes {
+
+ before() : staticinitialization(*) && !within(ForceWeaverToUnpackAllTypes) {}
+
+} \ No newline at end of file