blob: 2ef80253eaf5be330aeb4d838dd464e9e248b516 [file] [log] [blame]
error[E0530]: match bindings cannot shadow statics
--> $DIR/E0530.rs:6:9
|
LL | static TEST: i32 = 0;
| --------------------- the static `TEST` is defined here
...
LL | TEST => {} //~ ERROR E0530
| ^^^^ cannot be named the same as a static
error: aborting due to previous error
For more information about this error, try `rustc --explain E0530`.