You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: compiler/src/dotty/tools/repl/ReplCompiler.scala
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -266,7 +266,7 @@ class ReplCompiler extends Compiler {
266
266
if (errorsAllowed ||!ctx.reporter.hasErrors)
267
267
unwrapped(unit.tpdTree, src)
268
268
else
269
-
ctx.reporter.removeBufferedMessages.errors
269
+
ctx.reporter.removeBufferedMessages.errors[tpd.ValDef] // FIXME removing this type gives a pickling error in `sbt dotty-bootstrapped/testCompilation` for BootstrappedOnlyCompilationTests.picklingWithCompiler
0 commit comments