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.
2 parents b301e4c + 169d021 commit fa84627Copy full SHA for fa84627
compiler/src/dotty/tools/dotc/core/classfile/ClassfileParser.scala
@@ -827,7 +827,7 @@ class ClassfileParser(
827
val expectedUUID = new UUID(reader.readUncompressedLong(), reader.readUncompressedLong())
828
val tastyUUID = new TastyHeaderUnpickler(tastyBytes).readHeader()
829
if (expectedUUID != tastyUUID)
830
- ctx.error(s"Tasty UUID ($tastyUUID) file did not correspond the tasty UUID ($expectedUUID) declared in the classfile $classfile.")
+ ctx.warning(s"$classfile is out of sync with its TASTy file. Loaded TASTy file. Try cleaning the project to fix this issue", NoSourcePosition)
831
return unpickleTASTY(tastyBytes)
832
}
833
0 commit comments