summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/files/run/Course-2002-06.scala3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/files/run/Course-2002-06.scala b/test/files/run/Course-2002-06.scala
index d044d778d6..a1218429c2 100644
--- a/test/files/run/Course-2002-06.scala
+++ b/test/files/run/Course-2002-06.scala
@@ -122,7 +122,8 @@ class PostScript (filename: String, _width: Double, _height: Double)
/** File where to print.*/
import java.io._;
val out : PrintStream = new PrintStream(
- if (filename == "-") System.out else new FileOutputStream(filename));
+ if (filename == "-") java.lang.System.out
+ else new FileOutputStream(filename));
def plotLine(x1: Double, y1: Double, x2: Double, y2: Double): Unit = {
out.println(x1 + " " + y1 + " m " + x2 + " " + y2 + " l");