mirror of
https://github.com/clap-rs/clap
synced 2024-12-13 22:32:33 +00:00
241d183b9c
- This makes it so `doc` compiles on stable Fixes #2618
15 lines
506 B
Text
15 lines
506 B
Text
error[E0277]: the trait bound `SubCmd: clap::Args` is not satisfied
|
|
--> $DIR/enum_variant_not_args.rs:3:9
|
|
|
|
|
3 | Sub(SubCmd),
|
|
| ^^^^^^ the trait `clap::Args` is not implemented for `SubCmd`
|
|
|
|
|
= note: required by `augment_args`
|
|
|
|
error[E0277]: the trait bound `SubCmd: clap::Args` is not satisfied
|
|
--> $DIR/enum_variant_not_args.rs:3:9
|
|
|
|
|
3 | Sub(SubCmd),
|
|
| ^^^^^^ the trait `clap::Args` is not implemented for `SubCmd`
|
|
|
|
|
= note: required by `augment_args_for_update`
|