rust/src/test/ui/error-codes/E0530.stderr

13 lines
392 B
Plaintext
Raw Normal View History

2018-02-07 21:35:35 -06:00
error[E0530]: match bindings cannot shadow statics
--> $DIR/E0530.rs:16:9
|
12 | static TEST: i32 = 0;
| --------------------- a static `TEST` is defined here
...
16 | TEST => {} //~ ERROR E0530
| ^^^^ cannot be named the same as a static
error: aborting due to previous error
2018-02-19 14:40:25 -06:00
If you want more information on this error, try using "rustc --explain E0530"