From 858a5d513779f4af6f12c0a530bdeceb7a7fd4d9 Mon Sep 17 00:00:00 2001 From: Adriaan Moors Date: Mon, 2 Dec 2013 17:10:35 -0800 Subject: Modularize continuations plugin. The continuations plugin and library will still ship with 2.11 (albeit unsupported). They now reside at https://github.com/scala/scala-continuations. --- test/files/run/t3199b.check | 1 + test/files/run/t3199b.scala | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 test/files/run/t3199b.check create mode 100644 test/files/run/t3199b.scala (limited to 'test/files/run') diff --git a/test/files/run/t3199b.check b/test/files/run/t3199b.check new file mode 100644 index 0000000000..b5d8bb58d9 --- /dev/null +++ b/test/files/run/t3199b.check @@ -0,0 +1 @@ +[1, 2, 3] diff --git a/test/files/run/t3199b.scala b/test/files/run/t3199b.scala new file mode 100644 index 0000000000..5010f2b085 --- /dev/null +++ b/test/files/run/t3199b.scala @@ -0,0 +1,11 @@ +object Test { + + def test() = { + java.util.Arrays.asList(Array(1,2,3):_*) + } + + def main(args: Array[String]) { + println(test()) + } + +} -- cgit v1.2.3