Skip to content

Commit 291c84a

Browse files
committed
Un-remove E0001, put a notice on it instead
1 parent 70b7bd9 commit 291c84a

File tree

2 files changed

+29
-2
lines changed

2 files changed

+29
-2
lines changed

src/librustc_const_eval/diagnostics.rs

+27
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,33 @@
1515
// In vim you can `:set tw=80` and use `gq` to wrap paragraphs. Use `:set tw=0` to disable.
1616
register_long_diagnostics! {
1717

18+
E0001: r##"
19+
## Note: this error code is no longer emitted by the compiler.
20+
21+
This error suggests that the expression arm corresponding to the noted pattern
22+
will never be reached as for all possible values of the expression being
23+
matched, one of the preceding patterns will match.
24+
25+
This means that perhaps some of the preceding patterns are too general, this
26+
one is too specific or the ordering is incorrect.
27+
28+
For example, the following `match` block has too many arms:
29+
30+
```compile_fail,E0001
31+
match Some(0) {
32+
Some(bar) => {/* ... */}
33+
x => {/* ... */} // This handles the `None` case
34+
_ => {/* ... */} // All possible cases have already been handled
35+
}
36+
```
37+
38+
`match` blocks have their patterns matched in order, so, for example, putting
39+
a wildcard arm above a more specific arm will make the latter arm irrelevant.
40+
41+
Ensure the ordering of the match arm is correct and remove any superfluous
42+
arms.
43+
"##,
44+
1845
E0002: r##"
1946
## Note: this error code is no longer emitted by the compiler.
2047

src/test/compile-fail/feature-gate-rustc-diagnostic-macros.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
// Test that diagnostic macros are gated by `rustc_diagnostic_macros` feature
1212
// gate
1313

14-
__register_diagnostic!(E0002);
14+
__register_diagnostic!(E0001);
1515
//~^ ERROR macro undefined: '__register_diagnostic!'
1616

1717
fn main() {
18-
__diagnostic_used!(E0002);
18+
__diagnostic_used!(E0001);
1919
//~^ ERROR macro undefined: '__diagnostic_used!'
2020
}
2121

0 commit comments

Comments
 (0)