clap/tests/derive_ui/flatten_enum_in_struct.rs

11 lines
134 B
Rust
Raw Normal View History

#[derive(clap::Parser)]
struct Opt {
#[command(flatten)]
sub: SubCmd,
}
#[derive(clap::Parser)]
enum SubCmd {}
fn main() {}