aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs161/pr226567/Bar.java
diff options
context:
space:
mode:
authoraclement <aclement>2008-04-24 04:07:25 +0000
committeraclement <aclement>2008-04-24 04:07:25 +0000
commit3189369baa42e562541ba2c3f4c2f6619f1b532f (patch)
treec41795f76a9c0f8f9413297bf29b7ebc03786fc2 /tests/bugs161/pr226567/Bar.java
parente08d3dede2af8b0aafe460f17a40912e621f4397 (diff)
downloadaspectj-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.java9
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