summary refs log tree commit diff
path: root/src/test/ui/issues/issue-24819.stderr
blob: 1166a887f86963ba670b903c2c98f17b6e7ff151 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
error[E0308]: mismatched types
  --> $DIR/issue-24819.rs:5:9
   |
LL |     foo(&mut v);
   |         ^^^^^^ expected struct `std::collections::HashSet`, found struct `std::vec::Vec`
   |
   = note: expected mutable reference `&mut std::collections::HashSet<u32>`
              found mutable reference `&mut std::vec::Vec<_>`

error: aborting due to previous error

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