summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@typesafe.com>2013-04-08 18:13:12 -0700
committerAdriaan Moors <adriaan.moors@typesafe.com>2013-04-08 18:13:12 -0700
commit967087811f9215d72651fc62e0977291efa2ab43 (patch)
tree37a019684fbb44b9cc6be270b27659abc6bc5542 /test
parentc57c4f8c6227cff8ff9c1392428f97f036a34f2c (diff)
parent684e87427850053db58707e2b7f3f51e10f882a0 (diff)
downloadscala-967087811f9215d72651fc62e0977291efa2ab43.tar.gz
scala-967087811f9215d72651fc62e0977291efa2ab43.tar.bz2
scala-967087811f9215d72651fc62e0977291efa2ab43.zip
Merge pull request #2356 from paulp/pr/isSameType
Wonderfulizing isSameType
Diffstat (limited to 'test')
-rw-r--r--test/files/neg/t5580b.check6
-rw-r--r--test/files/neg/t5580b.scala (renamed from test/files/pos/t5580b.scala)6
2 files changed, 6 insertions, 6 deletions
diff --git a/test/files/neg/t5580b.check b/test/files/neg/t5580b.check
new file mode 100644
index 0000000000..45fde46ff9
--- /dev/null
+++ b/test/files/neg/t5580b.check
@@ -0,0 +1,6 @@
+t5580b.scala:11: error: polymorphic expression cannot be instantiated to expected type;
+ found : [A]scala.collection.mutable.Set[A]
+ required: scala.collection.mutable.Map[bar,scala.collection.mutable.Set[bar]]
+ if (map.get(tmp).isEmpty) map.put(tmp,collection.mutable.Set())
+ ^
+one error found
diff --git a/test/files/pos/t5580b.scala b/test/files/neg/t5580b.scala
index d5a4a0a2b2..2161da4584 100644
--- a/test/files/pos/t5580b.scala
+++ b/test/files/neg/t5580b.scala
@@ -1,9 +1,3 @@
-/** It's a pos test because it does indeed compile,
- * not so much because I'm glad it does. Testing
- * that error messages created and discarded during
- * implicit search don't blow it up.
- */
-
import scala.collection.mutable.WeakHashMap
import scala.collection.JavaConversions._