summaryrefslogtreecommitdiff
path: root/test/files/pos/infer.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/infer.scala')
-rw-r--r--test/files/pos/infer.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/infer.scala b/test/files/pos/infer.scala
index adb586b73e..24871458b3 100644
--- a/test/files/pos/infer.scala
+++ b/test/files/pos/infer.scala
@@ -1,4 +1,4 @@
-module test {
+object test {
class List[+a] {
def ::[b >: a](x: b): List[b] = new Cons(x, this);
}