summaryrefslogtreecommitdiff
path: root/test/pending/run/reify_closure6.scala
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2011-12-25 11:06:04 +0100
committerEugene Burmako <xeno.by@gmail.com>2011-12-26 22:48:33 +0100
commit8f2d318ee2e09baee4e42da73aafb6999ff3874c (patch)
tree1cb705ccbf52472fccc5381de0087b85f65e915c /test/pending/run/reify_closure6.scala
parentf737e35ddf43599043ab78404c4f9a13e6d02c9b (diff)
downloadscala-8f2d318ee2e09baee4e42da73aafb6999ff3874c.tar.gz
scala-8f2d318ee2e09baee4e42da73aafb6999ff3874c.tar.bz2
scala-8f2d318ee2e09baee4e42da73aafb6999ff3874c.zip
A handful of tests for closures under reification
Diffstat (limited to 'test/pending/run/reify_closure6.scala')
-rw-r--r--test/pending/run/reify_closure6.scala26
1 files changed, 26 insertions, 0 deletions
diff --git a/test/pending/run/reify_closure6.scala b/test/pending/run/reify_closure6.scala
new file mode 100644
index 0000000000..909071aa44
--- /dev/null
+++ b/test/pending/run/reify_closure6.scala
@@ -0,0 +1,26 @@
+import scala.tools.nsc.reporters._
+import scala.tools.nsc.Settings
+import reflect.runtime.Mirror.ToolBox
+
+object Test extends App {
+ var q = 0
+ def foo[T](ys: List[T]): Int => Int = {
+ val z = 1
+ var y = 0
+ val fun: reflect.Code[Int => Int] = x => {
+ y += 1
+ q += 1
+ x + ys.length * z + q + y
+ }
+
+ 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("first invocation = " + foo(List(1, 2, 3))(10))
+ println("second invocation = " + foo(List(1, 2, 3, 4))(10))
+ println("q after second invocation = " + q)
+}