clap/tests/derive_ui/value_parser_unsupported.rs
2024-08-28 14:03:00 -05:00

13 lines
149 B
Rust

use clap::Parser;
#[derive(Parser, Debug)]
struct Cli {
foo: Custom,
}
#[derive(Clone, Debug)]
struct Custom;
fn main() {
Cli::parse();
}