summaryrefslogtreecommitdiff
path: root/test/files/run/toolbox-varargs/Test.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/toolbox-varargs/Test.scala')
-rw-r--r--test/files/run/toolbox-varargs/Test.scala13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/files/run/toolbox-varargs/Test.scala b/test/files/run/toolbox-varargs/Test.scala
new file mode 100644
index 0000000000..be5ab45768
--- /dev/null
+++ b/test/files/run/toolbox-varargs/Test.scala
@@ -0,0 +1,13 @@
+object Test {
+ def main(args: Array[String]): Unit = {
+ import scala.tools.reflect.ToolBox
+ val m = reflect.runtime.currentMirror
+ val u = m.universe
+ import u._
+ val tb = m.mkToolBox();
+ tb.compile(q"new p.Varargs(null, null)")
+ tb.compile(q"p.Varargs.staticMethod(null, null)")
+ tb.compile(q"(null: p.Varargs).instanceMethod(null, null)")
+ }
+}
+