1- scala/runtime/ScalaRunTime.scala
2- # Doesn't compile since we're not on 2.11 anymore
3-
4-
5- ## Errors having to do with deep subtypes
6-
7- scala/collection/generic/ParSetFactory.scala
8- # This gives a deep subtype violation when run with the rest of the whitelist.
9- # Works without -Yno-deep-subtypes, though.
10-
11- scala/collection/parallel/mutable/ParMap.scala
12- # -Yno-deep-subtypes fails
13-
14- scala/collection/parallel/ParMap.scala
15- # -Yno-deep-subtypes fails
16-
17- scala/collection/parallel/ParMapLike.scala
18- # -Yno-deep-subtypes fails
19-
20-
21-
22- ## Ycheck failures, presumably linked to TailCalls
23-
24- scala/collection/parallel/ParIterableLike.scala
25- # -Ycheck:classOf fails
26-
27- scala/collection/parallel/ParSeqLike.scala
28- # -Ycheck:classOf fails
29-
30- scala/util/control/TailCalls.scala
31- # -Ycheck:classOf fails
32-
33-
34-
351## Errors having to do with unavailable APIs or language features:
362
37- scala/reflect/ClassManifestDeprecatedApis.scala
38- # 51 | import Manifest._
39- # | ^^^^^^^^
40- # | not found: Manifest
41-
42- scala/reflect/ClassTag.scala
43- # 124 | val Short : ClassTag[scala.Short] = Manifest.Short
44- # | ^^^^^^^^
45- # | not found: Manifest
46-
47- scala/reflect/Manifest.scala
48- # 104 | private def readResolve(): Any = Manifest.Short
49- # | ^^^^^^^^
50- # | not found: Manifest
51-
523scala/text/Document.scala
534# Lots of type errors for pattern matches, having to do with the fact
545# that Document contains a :: method without corresponding extractor,
@@ -70,8 +21,3 @@ scala/StringContext.scala
7021# 168 | def f[A >: Any](args: A*): String = macro ???
7122# | ^^^^^
7223# | not found: macro
73-
74- scala/util/control/Exception.scala
75- # 51 | implicit def throwableSubtypeToCatcher[Ex <: Throwable: ClassTag, T](pf: PartialFunction[Ex, T]) =
76- # | ^
77- # | cyclic reference involving method mkCatcher
0 commit comments