rust/tests/ui/error-codes/E0530.stderr
Nilstrieb 41e8d152dc Show number in error message even for one error
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
2023-11-24 19:15:52 +01:00

13 lines
369 B
Plaintext

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`.