]> git.lizzy.rs Git - rust.git/blob - src/test/ui/type/type-ascription-instead-of-initializer.stderr
On mismatched argument count point at arguments
[rust.git] / src / test / ui / type / type-ascription-instead-of-initializer.stderr
1 error: expected type, found `10`
2   --> $DIR/type-ascription-instead-of-initializer.rs:2:31
3    |
4 LL |     let x: Vec::with_capacity(10, 20);
5    |         --                    ^^ expected type
6    |         ||
7    |         |help: use `=` if you meant to assign
8    |         while parsing the type for `x`
9
10 error[E0061]: this function takes 1 argument but 2 arguments were supplied
11   --> $DIR/type-ascription-instead-of-initializer.rs:2:12
12    |
13 LL |     let x: Vec::with_capacity(10, 20);
14    |            ^^^^^^^^^^^^^^^^^^ --  -- supplied 2 arguments
15    |            |
16    |            expected 1 argument
17
18 error: aborting due to 2 previous errors
19
20 For more information about this error, try `rustc --explain E0061`.