diff options
author | aclement <aclement> | 2008-12-01 20:26:04 +0000 |
---|---|---|
committer | aclement <aclement> | 2008-12-01 20:26:04 +0000 |
commit | cd586e1891caecc3760a77305e9fe051759f98ab (patch) | |
tree | ee63d9d870c966857a5fc7586dad5ac7a53a0b8b /tests/bugs163 | |
parent | 7c00631cac0293e407812d68e7dd2d170ef34e7f (diff) | |
download | aspectj-cd586e1891caecc3760a77305e9fe051759f98ab.tar.gz aspectj-cd586e1891caecc3760a77305e9fe051759f98ab.zip |
213751: 249216: tests
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 {} |