summaryrefslogtreecommitdiff
path: root/test/pending/run/t5943b2.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/run/t5943b2.scala')
-rw-r--r--test/pending/run/t5943b2.scala10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/pending/run/t5943b2.scala b/test/pending/run/t5943b2.scala
new file mode 100644
index 0000000000..85299d9f12
--- /dev/null
+++ b/test/pending/run/t5943b2.scala
@@ -0,0 +1,10 @@
+import scala.reflect.runtime.universe._
+import scala.reflect.runtime.{currentMirror => cm}
+import scala.tools.reflect.ToolBox
+
+// pending until https://issues.scala-lang.org/browse/SI-6393 is fixed
+object Test extends App {
+ val tb = cm.mkToolBox()
+ val expr = tb.parse("math.sqrt(4.0)")
+ println(tb.eval(expr))
+} \ No newline at end of file