]> git.lizzy.rs Git - rust.git/blob - tests/ui/disambiguate-identical-names.stderr
Bless tests after rebase
[rust.git] / tests / ui / disambiguate-identical-names.stderr
1 error[E0308]: mismatched types
2   --> $DIR/disambiguate-identical-names.rs:13:10
3    |
4 LL |     test(&v);
5    |     ---- ^^ expected `&Vec<Vec<u32>>`, found `&HashMap<u8, u8>`
6    |     |
7    |     arguments to this function are incorrect
8    |
9    = note: expected reference `&std::vec::Vec<std::vec::Vec<u32>>`
10               found reference `&HashMap<u8, u8>`
11 note: function defined here
12   --> $DIR/disambiguate-identical-names.rs:6:4
13    |
14 LL | fn test(_v: &Vec<Vec<u32>>) {
15    |    ^^^^ ------------------
16
17 error: aborting due to previous error
18
19 For more information about this error, try `rustc --explain E0308`.