summaryrefslogtreecommitdiff
path: root/test/pending/run/reify_closure4a.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/run/reify_closure4a.scala')
-rw-r--r--test/pending/run/reify_closure4a.scala22
1 files changed, 0 insertions, 22 deletions
diff --git a/test/pending/run/reify_closure4a.scala b/test/pending/run/reify_closure4a.scala
deleted file mode 100644
index 99e9d82706..0000000000
--- a/test/pending/run/reify_closure4a.scala
+++ /dev/null
@@ -1,22 +0,0 @@
-import scala.tools.nsc.reporters._
-import scala.tools.nsc.Settings
-import reflect.runtime.Mirror.ToolBox
-
-object Test extends App {
- def foo(y: Int): Int => Int = {
- val y1 = y
-
- val fun: reflect.Code[Int => Int] = x => {
- x + y1
- }
-
- val reporter = new ConsoleReporter(new Settings)
- val toolbox = new ToolBox(reporter)
- val ttree = toolbox.typeCheck(fun.tree)
- val dyn = toolbox.runExpr(ttree)
- dyn.asInstanceOf[Int => Int]
- }
-
- println(foo(1)(10))
- println(foo(2)(10))
-}