aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs162/pr242797/case2/GenericMethodAspect.aj
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs162/pr242797/case2/GenericMethodAspect.aj')
-rw-r--r--tests/bugs162/pr242797/case2/GenericMethodAspect.aj10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/bugs162/pr242797/case2/GenericMethodAspect.aj b/tests/bugs162/pr242797/case2/GenericMethodAspect.aj
new file mode 100644
index 000000000..8bd5d166d
--- /dev/null
+++ b/tests/bugs162/pr242797/case2/GenericMethodAspect.aj
@@ -0,0 +1,10 @@
+import java.util.ArrayList;
+import java.util.List;
+
+public aspect GenericMethodAspect {
+
+ public <T> List<T> GenericMethodInterface.getStuff(){
+ return new ArrayList<T>();
+ }
+
+}