diff options
Diffstat (limited to 'tests/bugs190/520135/FailsApectJ.java')
-rw-r--r-- | tests/bugs190/520135/FailsApectJ.java | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/bugs190/520135/FailsApectJ.java b/tests/bugs190/520135/FailsApectJ.java new file mode 100644 index 000000000..b7d67af4d --- /dev/null +++ b/tests/bugs190/520135/FailsApectJ.java @@ -0,0 +1,24 @@ +package com.afrozaar.aspectj.test; + +import java.util.function.Function; + +import java.util.Arrays; +import java.util.Collection; +import java.util.List; + +public class FailsApectJ { + static aspect X { + before(): within(FailsApectJ) && call(* *(..)) {} + } + + private <T> Function<String, Collection<String>> ASpectJFailWithWildCardAndVarArgeMethodReference() { + Function<T, ? extends Object> x = a -> a; // the wild card fails the compile + x.andThen(this::get); + return null; + } + + private <T> List<T> get(T... args) { + return Arrays.asList(args); + } + +} |