clap/clap_derive/tests/ui/skip_subcommand.stderr
2020-01-18 19:04:11 +05:30

11 lines
499 B
Text

error: subcommand, flatten and skip cannot be used together
--> $DIR/skip_subcommand.rs:17:24
|
17 | #[clap(subcommand, skip)]
| ^^^^
error[E0277]: the trait bound `MakeCookie: std::convert::From<clap::parse::matches::arg_matches::ArgMatches>` is not satisfied
--> $DIR/skip_subcommand.rs:11:10
|
11 | #[derive(Clap, Debug)]
| ^^^^ the trait `std::convert::From<clap::parse::matches::arg_matches::ArgMatches>` is not implemented for `MakeCookie`