Skip to content

Commit 94af535

Browse files
committed
Add a separator between ICEs
1 parent cfb9e81 commit 94af535

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lintcheck/src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -722,7 +722,7 @@ fn main() {
722722
write!(text, "{}", all_msgs.join("")).unwrap();
723723
text.push_str("\n\n### ICEs:\n");
724724
for ice in &raw_ices {
725-
let _: fmt::Result = write!(text, "{}:\n{}\n", ice.crate_name, ice.ice_content);
725+
let _: fmt::Result = write!(text, "{}:\n{}\n========================================\n\n", ice.crate_name, ice.ice_content);
726726
}
727727

728728
println!("Writing logs to {}", config.lintcheck_results_path.display());

0 commit comments

Comments
 (0)