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"
|