]> git.proxmox.com Git - rustc.git/blame - vendor/clap/src/bin/stdio-fixture.rs
New upstream version 1.65.0+dfsg1
[rustc.git] / vendor / clap / src / bin / stdio-fixture.rs
CommitLineData
923072b8
FG
1fn main() {
2 let cmd = clap::Command::new("stdio-fixture")
3 .version("1.0")
4 .long_version("1.0 - a2132c")
5 .arg_required_else_help(true)
6 .subcommand(clap::Command::new("more"))
7 .arg(
8 clap::Arg::new("verbose")
9 .long("verbose")
10 .help("log")
11 .long_help("more log"),
12 );
13 cmd.get_matches();
14}