clap/tests/derive_ui/flatten_struct_in_enum.stderr

10 lines
323 B
Text
Raw Normal View History

error[E0277]: the trait bound `SubCmd: Subcommand` is not satisfied
2024-02-08 15:45:17 +00:00
--> tests/derive_ui/flatten_struct_in_enum.rs:4:9
|
2024-02-08 15:45:17 +00:00
4 | Sub(SubCmd),
| ^^^^^^ the trait `Subcommand` is not implemented for `SubCmd`
|
2023-01-09 18:29:41 +00:00
= help: the following other types implement trait `Subcommand`:
Opt
2024-02-08 15:45:17 +00:00
Box<T>