From 801c5cd82e1a7feb1f9515785ad36e0f0d2b993e Mon Sep 17 00:00:00 2001 From: Paul Phillips Date: Sun, 20 Feb 2011 00:11:23 +0000 Subject: Based on the frequency with which I hear questi... Based on the frequency with which I hear questions about it and similar, this error message assumes too much understanding. scala> scala.collection.mutable.MultiMap(1, 2, 3) :8: error: value MultiMap is not a member of package scala.collection.mutable Now it says: scala> scala.collection.mutable.MultiMap(1, 2, 3) :8: error: object MultiMap is not a member of package scala.collection.mutable Note: trait MultiMap exists, but it has no companion object. No review. --- test/files/neg/bug639.check | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/files/neg/bug639.check') diff --git a/test/files/neg/bug639.check b/test/files/neg/bug639.check index 2c6055cb96..30a93518a9 100644 --- a/test/files/neg/bug639.check +++ b/test/files/neg/bug639.check @@ -1,4 +1,4 @@ -bug639.scala:3: error: not found: value a +bug639.scala:3: error: not found: object a import a._ ^ one error found -- cgit v1.2.3