diff options
author | acolyer <acolyer> | 2005-08-31 13:48:16 +0000 |
---|---|---|
committer | acolyer <acolyer> | 2005-08-31 13:48:16 +0000 |
commit | b953c0347a539890d9e1f87feabc78a3d687c50f (patch) | |
tree | 6e0f85d05777630a255f4586034253f3d6e7fc50 /tests/bugs150 | |
parent | 766509d831e8a8b6f0032bf7e726aa3e6fd4c745 (diff) | |
download | aspectj-b953c0347a539890d9e1f87feabc78a3d687c50f.tar.gz aspectj-b953c0347a539890d9e1f87feabc78a3d687c50f.zip |
test for pr95992
Diffstat (limited to 'tests/bugs150')
-rw-r--r-- | tests/bugs150/pr95992.aj | 14 |
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 |