aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/Course-2002-07.scala
diff options
context:
space:
mode:
authorDmitry Petrashko <dmitry.petrashko@gmail.com>2015-05-13 12:08:27 +0200
committerDmitry Petrashko <dmitry.petrashko@gmail.com>2015-05-13 12:08:27 +0200
commit73a93505c432b410ae39fb3c4d6168b2e49832ce (patch)
tree53d45141a7b93682bea6430b0fb6ab28c3c3fad3 /tests/pending/run/Course-2002-07.scala
parent89bacb9c25a58454ff1878e67f7ea07ffc8c269f (diff)
downloaddotty-73a93505c432b410ae39fb3c4d6168b2e49832ce.tar.gz
dotty-73a93505c432b410ae39fb3c4d6168b2e49832ce.tar.bz2
dotty-73a93505c432b410ae39fb3c4d6168b2e49832ce.zip
Running rewrite tool on run tests.
Diffstat (limited to 'tests/pending/run/Course-2002-07.scala')
-rw-r--r--tests/pending/run/Course-2002-07.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/pending/run/Course-2002-07.scala b/tests/pending/run/Course-2002-07.scala
index 2d9457653..b26eda1e0 100644
--- a/tests/pending/run/Course-2002-07.scala
+++ b/tests/pending/run/Course-2002-07.scala
@@ -666,7 +666,7 @@ object MB {
Console.println("f0(x) = " + f0);
Console.println;
- def check(n: String, f: Expr, x: Int, e: Int) {
+ def check(n: String, f: Expr, x: Int, e: Int): Unit = {
val a: Int = f.evaluate(List(("x",x)));
val s: String = if (a == e) "ok" else "KO(" + e + ")";
Console.println(n + "(" + x + ") = " + a + " " + s);
@@ -702,7 +702,7 @@ object MB {
//############################################################################
object Test {
- def main(args: Array[String]) {
+ def main(args: Array[String]): Unit = {
M0.test;
M1.test;
M2.test;