rust/tests/ui/error-codes/E0214.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
431 B
Plaintext
Raw Normal View History

error[E0214]: parenthesized type parameters may only be used with a `Fn` trait
--> $DIR/E0214.rs:2:12
2018-02-07 21:35:35 -06:00
|
2018-02-22 18:42:32 -06:00
LL | let v: Vec(&str) = vec!["foo"];
2022-06-14 20:50:34 -05:00
| ^^^^^^^^^ only `Fn` traits may use parentheses
|
help: use angle brackets instead
|
LL | let v: Vec<&str> = vec!["foo"];
| ~ ~
2018-02-07 21:35:35 -06:00
error: aborting due to previous error
2018-02-07 21:35:35 -06:00
For more information about this error, try `rustc --explain E0214`.