diff options
author | aclement <aclement> | 2006-03-27 13:42:23 +0000 |
---|---|---|
committer | aclement <aclement> | 2006-03-27 13:42:23 +0000 |
commit | c9a60e519d73bb7aa4d8cf4615445089202bd3ad (patch) | |
tree | ba3327def85b24581e1cc3d4e1ab2c53eca5181b /tests/bugs151 | |
parent | f963fc4dcd3f0391e6eb234c3346d16eb5bdb891 (diff) | |
download | aspectj-c9a60e519d73bb7aa4d8cf4615445089202bd3ad.tar.gz aspectj-c9a60e519d73bb7aa4d8cf4615445089202bd3ad.zip |
test and fix for 133307 - funky type variable bounds.
Diffstat (limited to 'tests/bugs151')
-rw-r--r-- | tests/bugs151/pr133307/Broken.aj | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/bugs151/pr133307/Broken.aj b/tests/bugs151/pr133307/Broken.aj new file mode 100644 index 000000000..30f2ef2ba --- /dev/null +++ b/tests/bugs151/pr133307/Broken.aj @@ -0,0 +1,7 @@ +interface TestIF<T extends TestIF> {} + +class TestClass {} + +aspect TestAspect { + declare parents: TestClass implements TestIF<TestClass>; +}
\ No newline at end of file |