We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Taken verbatim from the example:
#[derive(Debug, StructOpt)] enum Command { #[structopt(external_subcommand)] Other(Vec<String>), }
upsets compiler (probably new lint)
--> src/main.rs:81:15 | 81 | Other(Vec<String>), | ^^^^^^ help: remove these braces | note: the lint level is defined here --> src/main.rs:14:9 | 14 | #![warn(unused)] | ^^^^^^ = note: `#[warn(unused_braces)]` implied by `#[warn(unused)]`
The text was updated successfully, but these errors were encountered:
Fixed by #399
Sorry, something went wrong.
No branches or pull requests
Taken verbatim from the example:
upsets compiler (probably new lint)
The text was updated successfully, but these errors were encountered: