blob: 125b60bc91423c78edf511b755527a9931988879 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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 => {}
| ^^^^ cannot be named the same as a static
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0530`.
|