summaryrefslogtreecommitdiff
path: root/test/files/run/t8346.check
diff options
context:
space:
mode:
authorStephen Compall <scompall@nocandysw.com>2014-05-24 17:31:19 -0400
committerStephen Compall <scompall@nocandysw.com>2014-05-24 17:31:19 -0400
commit9fc098dd0dcf1825ec55501716b4f2a0a6d197ae (patch)
tree7ef62fa8a9f0f017db7719c3875bba63fc13f0ed /test/files/run/t8346.check
parente948b39ca4df48b2acb0e972a2caf674c643a990 (diff)
downloadscala-9fc098dd0dcf1825ec55501716b4f2a0a6d197ae.tar.gz
scala-9fc098dd0dcf1825ec55501716b4f2a0a6d197ae.tar.bz2
scala-9fc098dd0dcf1825ec55501716b4f2a0a6d197ae.zip
SI-8346: Rebuild invariant sets in #toSet, avoiding CCE.
SI-3953 caused several types of sets' operations to trivially throw `ClassCastException` after using inherited covariant #toSet method, by doing an unchecked cast that is only safe for intrinsically covariant set data structures like `HashSet`, but totally unsafe for others like `TreeSet` or `Enumeration.ValueSet`. This change moves the cast to the leaves of the class hierarchy where that is safe, and incidentally undeprecates overriding Set#toSet.
Diffstat (limited to 'test/files/run/t8346.check')
-rw-r--r--test/files/run/t8346.check6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/files/run/t8346.check b/test/files/run/t8346.check
new file mode 100644
index 0000000000..1ba5c31abe
--- /dev/null
+++ b/test/files/run/t8346.check
@@ -0,0 +1,6 @@
+BitSet: List(invariant, invariant, invariant, invariant)
+HashSet: List(covariant (true), covariant (true), covariant (true), covariant (true))
+ListSet: List(covariant (true), covariant (true), covariant (true), covariant (true))
+SortedSet: List(invariant, invariant, invariant, invariant)
+TreeSet: List(invariant, invariant, invariant, invariant)
+ValueSet: invariant