rustc/vendor/xflags-macros-0.3.2/tests/data/aliases.rs
2024-06-24 14:48:22 +02:00

12 lines
318 B
XML

xflags! {
/// commands with different aliases
cmd alias-cmd {
/// And even an aliased subcommand!
cmd sub s {
/// Little sanity check to see if this still works as intended
optional -c, --count count: usize
}
cmd this one has a lot of aliases {}
}
}