diff options
author | aclement <aclement> | 2007-02-07 09:11:54 +0000 |
---|---|---|
committer | aclement <aclement> | 2007-02-07 09:11:54 +0000 |
commit | 87e59db578390c77aabab01d2e5d19b3514cda96 (patch) | |
tree | c4889eeb95886ad6c3a9ced62fa83201712f33e9 /tests/bugs160 | |
parent | afad393293c7655e4161bb9b9625e8d0589c837a (diff) | |
download | aspectj-87e59db578390c77aabab01d2e5d19b3514cda96.tar.gz aspectj-87e59db578390c77aabab01d2e5d19b3514cda96.zip |
171952: testcode
Diffstat (limited to 'tests/bugs160')
-rw-r--r-- | tests/bugs160/pr171952/Foo.java | 6 | ||||
-rw-r--r-- | tests/bugs160/pr171952/FooAspect.java | 10 |
2 files changed, 16 insertions, 0 deletions
diff --git a/tests/bugs160/pr171952/Foo.java b/tests/bugs160/pr171952/Foo.java new file mode 100644 index 000000000..d60b9a65c --- /dev/null +++ b/tests/bugs160/pr171952/Foo.java @@ -0,0 +1,6 @@ +import java.util.List; + +public interface Foo { + + <T> List<T> createList(); +}
\ No newline at end of file diff --git a/tests/bugs160/pr171952/FooAspect.java b/tests/bugs160/pr171952/FooAspect.java new file mode 100644 index 000000000..a376442fc --- /dev/null +++ b/tests/bugs160/pr171952/FooAspect.java @@ -0,0 +1,10 @@ +import java.util.ArrayList; +import java.util.List; + +public aspect FooAspect { + + + public <T> List<T> Foo.createList() { + return new ArrayList<T>(); + } +}
\ No newline at end of file |