Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion compiler/rustc_interface/src/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ internal compiler error: query cycle handler thread panicked, aborting process";
diag.help(
"try lowering `-Z threads` or checking the operating system's resource limits",
);
diag.emit();
diag.emit()
})
})
})
Expand Down
2 changes: 1 addition & 1 deletion compiler/rustc_parse/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ pub fn new_parser_from_file<'a>(
if let Some(sp) = sp {
err.span(sp);
}
err.emit();
err.emit()
});
new_parser_from_source_file(psess, source_file, strip_tokens)
}
Expand Down
2 changes: 1 addition & 1 deletion compiler/rustc_session/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1615,7 +1615,7 @@ pub fn build_target_config(
let mut err =
early_dcx.early_struct_fatal(format!("error loading target specification: {e}"));
err.help("run `rustc --print target-list` for a list of built-in targets");
err.emit();
err.emit()
}
}
}
Expand Down
Loading