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 2b3007a commit 4290e61Copy full SHA for 4290e61
compiler/src/dotty/tools/dotc/core/TypeErrors.scala
@@ -177,7 +177,7 @@ object CyclicReference:
177
def apply(denot: SymDenotation)(using Context): CyclicReference =
178
val ex = new CyclicReference(denot)
179
if ex.computeStackTrace then
180
- cyclicErrors.println(s"Cyclic reference involving! $denot")
+ cyclicErrors.println(s"Cyclic reference involving $denot")
181
val sts = ex.getStackTrace.asInstanceOf[Array[StackTraceElement]]
182
for (elem <- sts take 200)
183
cyclicErrors.println(elem.toString)
0 commit comments