summaryrefslogtreecommitdiff
path: root/test/files/run/Course-2002-09.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/run/Course-2002-09.scala
parent85c73ba918913361f925c23469c012096a93fb54 (diff)
downloadscala-efd06d74f1621351c70456478b07a4ace6a9a211.tar.gz
scala-efd06d74f1621351c70456478b07a4ace6a9a211.tar.bz2
scala-efd06d74f1621351c70456478b07a4ace6a9a211.zip
*** empty log message ***
Diffstat (limited to 'test/files/run/Course-2002-09.scala')
-rw-r--r--test/files/run/Course-2002-09.scala12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/files/run/Course-2002-09.scala b/test/files/run/Course-2002-09.scala
index 2e012fdf35..4238402263 100644
--- a/test/files/run/Course-2002-09.scala
+++ b/test/files/run/Course-2002-09.scala
@@ -12,7 +12,7 @@ trait Constraint {
def dropValue: Unit
}
-module NoConstraint extends Constraint {
+object NoConstraint extends Constraint {
def newValue: Unit = error("NoConstraint.newValue");
def dropValue: Unit = error("NoConstraint.dropValue");
}
@@ -168,7 +168,7 @@ class Quantity() {
//############################################################################
-module M0 {
+object M0 {
def CFconverter(c: Quantity, f: Quantity) = {
val u = new Quantity();
@@ -209,7 +209,7 @@ module M0 {
//############################################################################
-module M1 {
+object M1 {
def constant(x: double): Quantity = {
val q = new Quantity();
@@ -250,7 +250,7 @@ module M1 {
//############################################################################
-module M2 {
+object M2 {
val a = new Quantity();
val b = new Quantity();
@@ -298,7 +298,7 @@ module M2 {
//############################################################################
-module M3 {
+object M3 {
def test = {
val a = new Quantity();
@@ -324,7 +324,7 @@ module M3 {
//############################################################################
-module Test {
+object Test {
def main(args: Array[String]): Unit = {
M0.test;
M1.test;