unplugged-system/external/rust/crates/argh/tests/ui/bad-long-names/bad-long-names.rs

16 lines
265 B
Rust
Raw Normal View History

/// Command
#[derive(argh::FromArgs)]
struct Cmd {
#[argh(switch)]
/// non-ascii
привет: bool,
#[argh(switch)]
/// uppercase
XMLHTTPRequest: bool,
#[argh(switch, long = "not really")]
/// bad attr
ok: bool,
}
fn main() {}