summaryrefslogtreecommitdiff
path: root/test/files/pos/test4.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2003-03-31 08:29:52 +0000
committerMartin Odersky <odersky@gmail.com>2003-03-31 08:29:52 +0000
commitefd06d74f1621351c70456478b07a4ace6a9a211 (patch)
tree01ac7505ed4f33582974d4519dc3e33d601614d2 /test/files/pos/test4.scala
parent85c73ba918913361f925c23469c012096a93fb54 (diff)
downloadscala-efd06d74f1621351c70456478b07a4ace6a9a211.tar.gz
scala-efd06d74f1621351c70456478b07a4ace6a9a211.tar.bz2
scala-efd06d74f1621351c70456478b07a4ace6a9a211.zip
*** empty log message ***
Diffstat (limited to 'test/files/pos/test4.scala')
-rw-r--r--test/files/pos/test4.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/pos/test4.scala b/test/files/pos/test4.scala
index 0bbb6f97a0..48949b7a7f 100644
--- a/test/files/pos/test4.scala
+++ b/test/files/pos/test4.scala
@@ -2,7 +2,7 @@ trait C {}
trait D {}
trait E {}
-module test {
+object test {
def c: C = c;
def d: D = d;
def e: E = e;
@@ -22,7 +22,7 @@ class O[X]() {
val j:I[X] = null;
}
-module o extends O[C]() {
+object o extends O[C]() {
def main = {
val s: S = null;