We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
extern crate clap; fn main() { let param0 = "00000000000000-00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 璀璀璀"; let mut app_ = clap::SubCommand::with_name(param0); let _ = clap::App::print_long_help(&mut app_); }
or
extern crate clap; fn main() { let app_ = clap::SubCommand::with_name("0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000-қ00000000000000000 蚝"); let mut app2_ = clap::App::display_order(app_ ,3472328296227680304); let _ = clap::App::print_help(&mut app2_); }
cargo run
[dependencies] clap = { version = "2.33.3" }
I also put reproduce files at print_help and print_long_help I hope you can check if this is a bug. Thanks a lot.
The text was updated successfully, but these errors were encountered:
Please try with master.
Sorry, something went wrong.
I tried and it seems the master has removed the subCommand.
@StevenJiang1110 The Subcommand is integrated with App now, and the corresponding codes are:
Subcommand
App
fn main() { let param0 = "00000000000000-00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 璀璀璀"; let mut app_ = clap::App::new(param0); let _ = clap::App::print_long_help(&mut app_); }
and:
fn main() { let app_ = clap::App::new("0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000-қ00000000000000000 蚝"); let mut app2_ = clap::App::display_order(app_ ,3472328296227680304); let _ = clap::App::print_help(&mut app2_); }
Both work fine.
No branches or pull requests
Code
or
Steps to reproduce the issue
cargo run
The bug report is as follows.
Version
I also put reproduce files at print_help
and print_long_help
I hope you can check if this is a bug. Thanks a lot.
The text was updated successfully, but these errors were encountered: