diff options
Diffstat (limited to 'tests/ui/issues/issue-34047.stderr')
-rw-r--r-- | tests/ui/issues/issue-34047.stderr | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/ui/issues/issue-34047.stderr b/tests/ui/issues/issue-34047.stderr new file mode 100644 index 000000000..f770ded50 --- /dev/null +++ b/tests/ui/issues/issue-34047.stderr @@ -0,0 +1,12 @@ +error[E0530]: match bindings cannot shadow constants + --> $DIR/issue-34047.rs:5:13 + | +LL | const C: u8 = 0; + | ---------------- the constant `C` is defined here +... +LL | mut C => {} + | ^ cannot be named the same as a constant + +error: aborting due to previous error + +For more information about this error, try `rustc --explain E0530`. |