summaryrefslogtreecommitdiff
path: root/test/pending/run/t3899/Base_1.java
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2012-05-20 17:23:58 +0200
committerJason Zaugg <jzaugg@gmail.com>2012-05-20 17:23:58 +0200
commit4613ae777e349793dba6df47bf278454a8ab124c (patch)
tree651ba16ab68759b3e5f330311b44403c547d708c /test/pending/run/t3899/Base_1.java
parent1f5584fbe183041d4af269278f0125e2f0b94a44 (diff)
downloadscala-4613ae777e349793dba6df47bf278454a8ab124c.tar.gz
scala-4613ae777e349793dba6df47bf278454a8ab124c.tar.bz2
scala-4613ae777e349793dba6df47bf278454a8ab124c.zip
Pending test for SI-3899.
The super accessor for the Java varargs method impedes Uncurry's efforts to convert repeated arguments to an Array. I'm not sure how to fix that.
Diffstat (limited to 'test/pending/run/t3899/Base_1.java')
-rw-r--r--test/pending/run/t3899/Base_1.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/pending/run/t3899/Base_1.java b/test/pending/run/t3899/Base_1.java
new file mode 100644
index 0000000000..114cc0b7a6
--- /dev/null
+++ b/test/pending/run/t3899/Base_1.java
@@ -0,0 +1,5 @@
+public class Base_1 {
+ public String[] varargs1(String... as) {
+ return as;
+ }
+}