clap/tests/derive_ui/subcommand_on_struct.rs

7 lines
80 B
Rust
Raw Normal View History

use clap::Subcommand;
#[derive(Subcommand, Debug)]
struct Opt {}
fn main() {}