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.
1 parent b7341db commit c00ab4bCopy full SHA for c00ab4b
src/tools/tidy/src/error_codes.rs
@@ -51,6 +51,7 @@ pub fn check(root_path: &Path, search_paths: &[&Path], verbose: bool, bad: &mut
51
// Stage 1: create list
52
let error_codes = extract_error_codes(root_path, &mut errors, verbose);
53
println!("Found {} error codes", error_codes.len());
54
+ println!("Highest error code: `{}`", error_codes.iter().max().unwrap());
55
56
// Stage 2: check list has docs
57
let no_longer_emitted = check_error_codes_docs(root_path, &error_codes, &mut errors, verbose);
0 commit comments