blob: 3fe676de59dab2f1c6b60bcead98564a61e6bd35 [file] [log] [blame]
error: expected type, found `10`
--> $DIR/type-ascription-instead-of-initializer.rs:2:31
|
LL | let x: Vec::with_capacity(10, 20);
| -- ^^ expected type
| ||
| |help: use `=` if you meant to assign
| while parsing the type for `x`
error[E0061]: this function takes 1 parameter but 2 parameters were supplied
--> $DIR/type-ascription-instead-of-initializer.rs:2:12
|
LL | let x: Vec::with_capacity(10, 20);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 1 parameter
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0061`.