rust/src/test/ui/error-codes/E0530.stderr
Vadim Petrochenkov fa72a81bea Update tests
2019-03-11 23:10:26 +03:00

12 lines
367 B
Text

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 previous error
For more information about this error, try `rustc --explain E0530`.