summaryrefslogtreecommitdiffstats
path: root/tests/bugs150/pr111481.aj
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs150/pr111481.aj')
-rw-r--r--tests/bugs150/pr111481.aj14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/bugs150/pr111481.aj b/tests/bugs150/pr111481.aj
new file mode 100644
index 000000000..e764b4e4f
--- /dev/null
+++ b/tests/bugs150/pr111481.aj
@@ -0,0 +1,14 @@
+public class pr111481 {
+
+ public static void main(String []argv) {
+ new pr111481(new Object[]{"a","b","c"});
+ new pr111481("a","b","c");
+ }
+
+}
+aspect A {
+ public pr111481.new(Object... names) {
+ System.out.println(names[0]);
+ }
+
+}