We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b67ac2 commit bd15941Copy full SHA for bd15941
src/dotty/tools/dotc/typer/ErrorReporting.scala
@@ -115,6 +115,7 @@ object ErrorReporting {
115
import DiagnosticString._
116
def d(args: Any*)(implicit ctx: Context): String = {
117
def isSensical(arg: Any): Boolean = arg match {
118
+ case l: Seq[_] => l.forall(isSensical(_))
119
case tpe: Type if tpe.isErroneous => false
120
case NoType => false
121
case sym: Symbol if sym.isCompleted =>
0 commit comments