summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpaltherr <paltherr@epfl.ch>2004-01-21 17:38:26 +0000
committerpaltherr <paltherr@epfl.ch>2004-01-21 17:38:26 +0000
commitcd4de247e0857fa8a9fe993efa7cb5f1ee6e5d8b (patch)
treeff826d49af92f4449e2559753fb503591bacc8e6
parente0302c3f4a0ce8ccb9f3692995382e330ffd2fad (diff)
downloadscala-cd4de247e0857fa8a9fe993efa7cb5f1ee6e5d8b.tar.gz
scala-cd4de247e0857fa8a9fe993efa7cb5f1ee6e5d8b.tar.bz2
scala-cd4de247e0857fa8a9fe993efa7cb5f1ee6e5d8b.zip
- Fixed superclass of console modules
-rw-r--r--sources/scalac/Global.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/scalac/Global.java b/sources/scalac/Global.java
index 6f211a0094..d6a2feb841 100644
--- a/sources/scalac/Global.java
+++ b/sources/scalac/Global.java
@@ -405,7 +405,7 @@ public class Global {
make.Apply(Position.FIRSTPOS,
make.Select(Position.FIRSTPOS,
make.Ident(Position.FIRSTPOS, Names.scala),
- Names.Object.toTypeName()),
+ Names.AnyRef.toTypeName()),
new Tree[0])},
unit.body))};
module++;