summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2013-01-03 12:34:00 -0800
committerPaul Phillips <paulp@improving.org>2013-01-03 12:34:00 -0800
commite112ac94d04be7ee715ebf8724709123b0f3e1f6 (patch)
treea00a8f9fc92cc061ab5d06250913af2bca97c73a /test
parentca98602e8243062c8e1e86afe954c48edc09cbad (diff)
parentac61e341216c2c61e29c74a8c3c27e915d479925 (diff)
downloadscala-e112ac94d04be7ee715ebf8724709123b0f3e1f6.tar.gz
scala-e112ac94d04be7ee715ebf8724709123b0f3e1f6.tar.bz2
scala-e112ac94d04be7ee715ebf8724709123b0f3e1f6.zip
Merge pull request #1822 from paulp/issue/6194
SI-6194, repl crash.
Diffstat (limited to 'test')
-rw-r--r--test/files/run/t6194.check1
-rw-r--r--test/files/run/t6194.scala8
2 files changed, 9 insertions, 0 deletions
diff --git a/test/files/run/t6194.check b/test/files/run/t6194.check
new file mode 100644
index 0000000000..b325f479d7
--- /dev/null
+++ b/test/files/run/t6194.check
@@ -0,0 +1 @@
+C:\FooBar\Java\includes\*.jar
diff --git a/test/files/run/t6194.scala b/test/files/run/t6194.scala
new file mode 100644
index 0000000000..ced3259427
--- /dev/null
+++ b/test/files/run/t6194.scala
@@ -0,0 +1,8 @@
+import scala.tools.nsc.util._
+
+object Test {
+ def main(args: Array[String]): Unit = {
+ val cp = ClassPath.expandPath("""C:\FooBar\Java\includes\*.jar""") mkString java.io.File.pathSeparator
+ println(cp)
+ }
+}