diff options
author | aclement <aclement> | 2008-04-24 04:07:25 +0000 |
---|---|---|
committer | aclement <aclement> | 2008-04-24 04:07:25 +0000 |
commit | 3189369baa42e562541ba2c3f4c2f6619f1b532f (patch) | |
tree | c41795f76a9c0f8f9413297bf29b7ebc03786fc2 /tests/bugs161/pr226567/Bar.java | |
parent | e08d3dede2af8b0aafe460f17a40912e621f4397 (diff) | |
download | aspectj-3189369baa42e562541ba2c3f4c2f6619f1b532f.tar.gz aspectj-3189369baa42e562541ba2c3f4c2f6619f1b532f.zip |
226567: test and fix - generic return types and overridden methods
Diffstat (limited to 'tests/bugs161/pr226567/Bar.java')
-rw-r--r-- | tests/bugs161/pr226567/Bar.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/bugs161/pr226567/Bar.java b/tests/bugs161/pr226567/Bar.java new file mode 100644 index 000000000..c4a0316e1 --- /dev/null +++ b/tests/bugs161/pr226567/Bar.java @@ -0,0 +1,9 @@ +package b; + +import java.util.Collection; + + +public interface Bar { + + public Collection<Foo> getFoos(); +}
\ No newline at end of file |