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