2019-01-20 04:45:38 -06:00
|
|
|
error[E0214]: parenthesized type parameters may only be used with a `Fn` trait
|
2019-09-04 19:36:01 -05:00
|
|
|
--> $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
|
|
|
|
2019-01-19 20:44:20 -06:00
|
|
|
error: aborting due to previous error
|
2018-02-07 21:35:35 -06:00
|
|
|
|
2019-01-19 20:44:20 -06:00
|
|
|
For more information about this error, try `rustc --explain E0214`.
|