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 23bbcbc + 621762c commit 390d987Copy full SHA for 390d987
compiler/src/dotty/tools/dotc/core/classfile/ClassfileParser.scala
@@ -838,7 +838,7 @@ 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 declared in the classfile ($expectedUUID).")
+ ctx.error(s"Tasty UUID ($tastyUUID) file did not correspond the tasty UUID ($expectedUUID) declared in the classfile $classfile.")
842
return unpickleTASTY(tastyBytes)
843
}
844
0 commit comments