clap/tests/derive_ui/flatten_struct_in_enum.rs

11 lines
134 B
Rust
Raw Normal View History

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