Skip to content

Commit bbe5be0

Browse files
committed
Merge pull request 265 from weiznich/fix/paths_with_rust_1.78
2 parents 59ef19a + 8f99e5a commit bbe5be0

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/normalize.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,9 @@ impl<'a> Filter<'a> {
401401
let trimmed_line = trimmed_line
402402
.strip_prefix("= note: ")
403403
.unwrap_or(trimmed_line);
404-
if trimmed_line.starts_with("the full type name has been written to") {
404+
if trimmed_line.starts_with("the full type name has been written to")
405+
|| trimmed_line.starts_with("the full name for the type has been written to")
406+
{
405407
return None;
406408
}
407409
}

0 commit comments

Comments
 (0)