diff options
Diffstat (limited to 'tests/bugs165/pr271169/HypChecksums.java')
-rw-r--r-- | tests/bugs165/pr271169/HypChecksums.java | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/bugs165/pr271169/HypChecksums.java b/tests/bugs165/pr271169/HypChecksums.java new file mode 100644 index 000000000..f76fa9272 --- /dev/null +++ b/tests/bugs165/pr271169/HypChecksums.java @@ -0,0 +1,19 @@ +public class HypChecksums { + + static class Adler { + long combine(long a, long b, long c, long d) { + return 3; + } + } + + public static void main(final String[] pArgs) { + Adler comb = new Adler(); + comb.combine(4, 2, 3, 3); + } +} + +aspect X { + Object around(): call(* combine(..)) && !within(X) { + return proceed(); + } +} |