Skip to content

Commit

Permalink
Merge pull request 265 from weiznich/fix/paths_with_rust_1.78
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed May 4, 2024
2 parents 59ef19a + 8f99e5a commit bbe5be0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/normalize.rs
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,9 @@ impl<'a> Filter<'a> {
let trimmed_line = trimmed_line
.strip_prefix("= note: ")
.unwrap_or(trimmed_line);
if trimmed_line.starts_with("the full type name has been written to") {
if trimmed_line.starts_with("the full type name has been written to")
|| trimmed_line.starts_with("the full name for the type has been written to")
{
return None;
}
}
Expand Down

0 comments on commit bbe5be0

Please sign in to comment.