Continune parsing after encountering Trait with paren args

This commit is contained in:
Esteban Küber 2019-01-19 14:48:43 -08:00
parent 0c0c585281
commit d38e70036e
6 changed files with 41 additions and 13 deletions

View file

@ -4,6 +4,13 @@ error[E0214]: parenthesized parameters may only be used with a trait
LL | let v: Vec(&str) = vec!["foo"];
| ^^^^^^ only traits may use parentheses
error: aborting due to previous error
error[E0107]: wrong number of type arguments: expected 1, found 0
--> $DIR/E0214.rs:2:12
|
LL | let v: Vec(&str) = vec!["foo"];
| ^^^^^^^^^ expected 1 type argument
For more information about this error, try `rustc --explain E0214`.
error: aborting due to 2 previous errors
Some errors occurred: E0107, E0214.
For more information about an error, try `rustc --explain E0107`.