Skip to content

Commit 804fb98

Browse files
authored
Unrolled build for rust-lang#129816
Rollup merge of rust-lang#129816 - RalfJung:tidy-feature-issue-mismatch, r=compiler-errors tidy: say which feature gate has a stability issue mismatch This gives some valuable context to what the error is actually about :)
2 parents d571ae8 + bce176d commit 804fb98

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/tools/tidy/src/features.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -455,9 +455,10 @@ fn get_and_check_lib_features(
455455
if f.tracking_issue != s.tracking_issue && f.level != Status::Accepted {
456456
tidy_error!(
457457
bad,
458-
"{}:{}: `issue` \"{}\" mismatches the {} `issue` of \"{}\"",
458+
"{}:{}: feature gate {} has inconsistent `issue`: \"{}\" mismatches the {} `issue` of \"{}\"",
459459
file.display(),
460460
line,
461+
name,
461462
f.tracking_issue_display(),
462463
display,
463464
s.tracking_issue_display(),

0 commit comments

Comments
 (0)