summaryrefslogtreecommitdiff
path: root/test/files/pos/patterns.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/patterns.scala')
-rw-r--r--test/files/pos/patterns.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/patterns.scala b/test/files/pos/patterns.scala
index 18ffec5025..48c068c618 100644
--- a/test/files/pos/patterns.scala
+++ b/test/files/pos/patterns.scala
@@ -2,7 +2,7 @@ trait Option[a] {}
case class Some[a](x: a) extends Option[a];
case class None[a] extends Option[a];
-module test {
+object test {
def println(str: String): Unit = java.lang.System.out.println(str);