summaryrefslogtreecommitdiffstats
path: root/tests/ui/mismatched_types/issue-106182.stderr
blob: ac3ab8e9895c4107a277d1af53c7d47b7263bcf3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
error[E0308]: mismatched types
  --> $DIR/issue-106182.rs:7:12
   |
LL |     match x {
   |           - this expression has type `&_S`
LL |         _S(& (mut _y), _v) => {
   |            ^^^^^^^^^^ expected `u32`, found reference
   |
   = note:   expected type `u32`
           found reference `&_`
help: consider removing `&` from the pattern
   |
LL |         _S(mut _y, _v) => {
   |            ~~~~~~

error: aborting due to previous error

For more information about this error, try `rustc --explain E0308`.