rust/tests/ui/mut/mut-pattern-mismatched.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
764 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0308]: mismatched types
2018-12-25 09:56:47 -06:00
--> $DIR/mut-pattern-mismatched.rs:6:10
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | let &_
2018-08-08 07:28:26 -05:00
| ^^ types differ in mutability
...
LL | = foo;
| --- this expression has type `&mut {integer}`
2018-08-08 07:28:26 -05:00
|
= note: expected mutable reference `&mut {integer}`
found reference `&_`
2018-08-08 07:28:26 -05:00
error[E0308]: mismatched types
2018-12-25 09:56:47 -06:00
--> $DIR/mut-pattern-mismatched.rs:15:9
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | let &mut _
2018-08-08 07:28:26 -05:00
| ^^^^^^ types differ in mutability
...
LL | = bar;
| --- this expression has type `&{integer}`
2018-08-08 07:28:26 -05:00
|
= note: expected reference `&{integer}`
found mutable reference `&mut _`
2018-08-08 07:28:26 -05:00
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0308`.