summaryrefslogtreecommitdiff
path: root/test/files
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2012-04-23 00:36:12 +0200
committerEugene Burmako <xeno.by@gmail.com>2012-04-23 00:50:10 +0200
commit3ddd3486095c3d6a87f723e0ff8187d1b08f5507 (patch)
tree09c854dbde4e5b4c7af0c16b93e2a5d316f2c0d9 /test/files
parent3c9c18ddccc17c2b0e62195315ba2abb72d3b761 (diff)
downloadscala-3ddd3486095c3d6a87f723e0ff8187d1b08f5507.tar.gz
scala-3ddd3486095c3d6a87f723e0ff8187d1b08f5507.tar.bz2
scala-3ddd3486095c3d6a87f723e0ff8187d1b08f5507.zip
minor fixes to reification
Diffstat (limited to 'test/files')
-rw-r--r--test/files/run/t5271_1.check1
-rw-r--r--test/files/run/t5271_1.scala1
-rw-r--r--test/files/run/t5271_2.check2
-rw-r--r--test/files/run/t5271_2.scala1
-rw-r--r--test/files/run/t5271_3.check2
-rw-r--r--test/files/run/t5271_3.scala1
6 files changed, 8 insertions, 0 deletions
diff --git a/test/files/run/t5271_1.check b/test/files/run/t5271_1.check
index 7a728e5164..5245173228 100644
--- a/test/files/run/t5271_1.check
+++ b/test/files/run/t5271_1.check
@@ -9,3 +9,4 @@
};
()
}
+()
diff --git a/test/files/run/t5271_1.scala b/test/files/run/t5271_1.scala
index 5baa57c290..20cafa6a08 100644
--- a/test/files/run/t5271_1.scala
+++ b/test/files/run/t5271_1.scala
@@ -7,4 +7,5 @@ object Test extends App {
val toolbox = mkToolBox()
println(code.tree)
+ println(code.eval)
}
diff --git a/test/files/run/t5271_2.check b/test/files/run/t5271_2.check
index d8d6edeffc..0765b3a6a4 100644
--- a/test/files/run/t5271_2.check
+++ b/test/files/run/t5271_2.check
@@ -10,3 +10,5 @@
val c = C.apply(2, 2);
scala.this.Predef.println(c.foo.$times(c.bar))
}
+4
+()
diff --git a/test/files/run/t5271_2.scala b/test/files/run/t5271_2.scala
index 9820ebe692..af6491407c 100644
--- a/test/files/run/t5271_2.scala
+++ b/test/files/run/t5271_2.scala
@@ -9,4 +9,5 @@ object Test extends App {
val toolbox = mkToolBox()
println(code.tree)
+ println(code.eval)
}
diff --git a/test/files/run/t5271_3.check b/test/files/run/t5271_3.check
index 1d4f47c5df..2b920a36a8 100644
--- a/test/files/run/t5271_3.check
+++ b/test/files/run/t5271_3.check
@@ -17,3 +17,5 @@
val c = C.apply(2, 2);
scala.this.Predef.println(c.foo.$times(c.bar).$eq$eq(C.qwe))
}
+true
+()
diff --git a/test/files/run/t5271_3.scala b/test/files/run/t5271_3.scala
index 5fd94f4a2b..646b10a8e5 100644
--- a/test/files/run/t5271_3.scala
+++ b/test/files/run/t5271_3.scala
@@ -10,4 +10,5 @@ object Test extends App {
val toolbox = mkToolBox()
println(code.tree)
+ println(code.eval)
}