clap/clap_derive/tests/ui/subcommand_on_struct.rs
2020-05-15 09:51:42 +02:00

6 lines
80 B
Rust

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