diff options
Diffstat (limited to 'tests/bugs163')
-rw-r--r-- | tests/bugs163/pr213751/Foo.java | 14 | ||||
-rw-r--r-- | tests/bugs163/pr249216/Handles.java | 12 |
2 files changed, 26 insertions, 0 deletions
diff --git a/tests/bugs163/pr213751/Foo.java b/tests/bugs163/pr213751/Foo.java new file mode 100644 index 000000000..600ad04d3 --- /dev/null +++ b/tests/bugs163/pr213751/Foo.java @@ -0,0 +1,14 @@ +import org.aspectj.lang.annotation.*; +import org.aspectj.lang.*; + +public abstract aspect Foo { + public abstract pointcut targetPointcut(); + + @Around("targetPointcut()") + public Object someAdvice(ProceedingJoinPoint thisJoinPoint) + { + return thisJoinPoint.proceed(); + } +} + + diff --git a/tests/bugs163/pr249216/Handles.java b/tests/bugs163/pr249216/Handles.java new file mode 100644 index 000000000..ecf8d0599 --- /dev/null +++ b/tests/bugs163/pr249216/Handles.java @@ -0,0 +1,12 @@ +import java.util.*; + +public aspect Handles { + public java.util.List<String> Ship.i(List<String>[][] u) { + return null; + } + public java.util.List<String> Ship.i(Set<String>[][] u) { + return null; + } +} + +class Ship {} |