rust/tests/ui/proc-macro/issue-66286.stderr

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

15 lines
465 B
Plaintext
Raw Normal View History

2020-12-04 17:02:56 -06:00
error[E0214]: parenthesized type parameters may only be used with a `Fn` trait
--> $DIR/issue-66286.rs:8:22
|
LL | pub extern fn foo(_: Vec(u32)) -> u32 {
2022-06-14 20:50:34 -05:00
| ^^^^^^^^ only `Fn` traits may use parentheses
|
help: use angle brackets instead
|
LL | pub extern fn foo(_: Vec<u32>) -> u32 {
| ~ ~
2020-12-04 17:02:56 -06:00
error: aborting due to 1 previous error
2020-12-04 17:02:56 -06:00
For more information about this error, try `rustc --explain E0214`.