rust/tests/ui/pattern/issue-17718-patterns.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
640 B
Plaintext
Raw Normal View History

2018-07-15 21:11:54 +00:00
error[E0530]: match bindings cannot shadow statics
2018-12-25 15:56:47 +00:00
--> $DIR/issue-17718-patterns.rs:7:9
2018-07-15 21:11:54 +00:00
|
LL | static A1: usize = 1;
| --------------------- the static `A1` is defined here
2018-07-15 21:11:54 +00:00
...
2019-03-09 12:03:44 +00:00
LL | A1 => {}
2018-07-15 21:11:54 +00:00
| ^^ cannot be named the same as a static
error[E0530]: match bindings cannot shadow statics
2018-12-25 15:56:47 +00:00
--> $DIR/issue-17718-patterns.rs:8:9
2018-07-15 21:11:54 +00:00
|
LL | static mut A2: usize = 1;
| ------------------------- the static `A2` is defined here
2018-07-15 21:11:54 +00:00
...
2019-03-09 12:03:44 +00:00
LL | A2 => {}
2018-07-15 21:11:54 +00:00
| ^^ cannot be named the same as a static
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0530`.