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 b6e92ce commit 8be6a33Copy full SHA for 8be6a33
compiler/src/dotty/tools/dotc/core/classfile/ClassfileParser.scala
@@ -838,7 +838,8 @@ class ClassfileParser(
838
val expectedUUID = new UUID(reader.readUncompressedLong(), reader.readUncompressedLong())
839
val tastyUUID = new TastyHeaderUnpickler(tastyBytes).readHeader()
840
if (expectedUUID != tastyUUID)
841
- ctx.error(s"Tasty UUID ($tastyUUID) file did not correspond the tasty UUID ($expectedUUID) declared in the classfile $classfile.")
+ // FIXME should be an error but currently `sbt-dotty/scripted source-dependencies/value-class` fails
842
+ ctx.warning(s"Tasty UUID ($tastyUUID) file did not correspond the tasty UUID ($expectedUUID) declared in the classfile $classfile.")
843
return unpickleTASTY(tastyBytes)
844
}
845
0 commit comments