]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gate-exhaustive_integer_patterns.stderr
Auto merge of #54720 - davidtwco:issue-51191, r=nikomatsakis
[rust.git] / src / test / ui / feature-gate-exhaustive_integer_patterns.stderr
1 error[E0004]: non-exhaustive patterns: `_` not covered
2   --> $DIR/feature-gate-exhaustive_integer_patterns.rs:13:11
3    |
4 LL |     match x { //~ ERROR non-exhaustive patterns: `_` not covered
5    |           ^ pattern `_` not covered
6
7 error: aborting due to previous error
8
9 For more information about this error, try `rustc --explain E0004`.