summaryrefslogtreecommitdiff
path: root/test/files/pos/bug20.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/bug20.scala')
-rw-r--r--test/files/pos/bug20.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/pos/bug20.scala b/test/files/pos/bug20.scala
index bdf33ef20d..4f1e5b1732 100644
--- a/test/files/pos/bug20.scala
+++ b/test/files/pos/bug20.scala
@@ -1,8 +1,8 @@
object Exceptions {
- class CubeException(s: String) extends java.lang.RuntimeException(s);
+ class CubeException(s: String) extends RuntimeException(s);
def main(args: Array[String]) =
- System.out.println(new CubeException("test"));
+ Console.println(new CubeException("test"));
}