]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-24819.stderr
Rollup merge of #91804 - woppopo:const_clone, r=oli-obk
[rust.git] / src / test / ui / issues / issue-24819.stderr
1 error[E0308]: mismatched types
2   --> $DIR/issue-24819.rs:5:9
3    |
4 LL |     foo(&mut v);
5    |         ^^^^^^ expected struct `HashSet`, found struct `Vec`
6    |
7    = note: expected mutable reference `&mut HashSet<u32>`
8               found mutable reference `&mut Vec<_>`
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0308`.