aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs150
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs150')
-rw-r--r--tests/bugs150/pr109728.java14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/bugs150/pr109728.java b/tests/bugs150/pr109728.java
new file mode 100644
index 000000000..5287087b0
--- /dev/null
+++ b/tests/bugs150/pr109728.java
@@ -0,0 +1,14 @@
+public class pr109728 {
+
+ public static void main(String[]argv) {
+ new pr109728().m().clone();
+ }
+
+ int[] m() { return null; }
+}
+
+
+
+aspect X {
+ before(): call(* *(..)) {}
+}