blob: 30f5b960a364e5e46c5614f299167d50f22b55c0 (
plain)
1
2
3
4
5
6
7
8
|
error[E0214]: parenthesized parameters may only be used with a trait
--> $DIR/E0214.rs:12:15
|
12 | let v: Vec(&str) = vec!["foo"];
| ^^^^^^ only traits may use parentheses
error: aborting due to previous error
|