summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/Global.scala
diff options
context:
space:
mode:
authormihaylov <mihaylov@epfl.ch>2006-04-25 12:35:07 +0000
committermihaylov <mihaylov@epfl.ch>2006-04-25 12:35:07 +0000
commit8e1da29a68f7d494a89a1922e3b30e39b245da63 (patch)
treef9747eaef916a4021af5e34269e0037fb218d187 /src/compiler/scala/tools/nsc/Global.scala
parent63f4d5118174a0260316ed4a3be6a8fcc9b487c3 (diff)
downloadscala-8e1da29a68f7d494a89a1922e3b30e39b245da63.tar.gz
scala-8e1da29a68f7d494a89a1922e3b30e39b245da63.tar.bz2
scala-8e1da29a68f7d494a89a1922e3b30e39b245da63.zip
Fixed bug #567
Diffstat (limited to 'src/compiler/scala/tools/nsc/Global.scala')
-rw-r--r--src/compiler/scala/tools/nsc/Global.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/Global.scala b/src/compiler/scala/tools/nsc/Global.scala
index 6c9f0affb0..afdcfb12b6 100644
--- a/src/compiler/scala/tools/nsc/Global.scala
+++ b/src/compiler/scala/tools/nsc/Global.scala
@@ -449,7 +449,7 @@ class Global(val settings: Settings, val reporter: Reporter) extends SymbolTable
if (settings.Xshowobj.value != "") showDef(newTermName(settings.Xshowobj.value), true);
if (reporter.errors == 0) {
- assert(symData.isEmpty, symData.elements.toList);
+ assert(stopped || symData.isEmpty, symData.elements.toList);
} else {
for (val Pair(sym, file) <- symSource.elements) {
sym.reset(new loaders.SourcefileLoader(file));