diff options
Diffstat (limited to 'vendor/xflags-macros/tests/it/src/help.rs')
-rw-r--r-- | vendor/xflags-macros/tests/it/src/help.rs | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/vendor/xflags-macros/tests/it/src/help.rs b/vendor/xflags-macros/tests/it/src/help.rs deleted file mode 100644 index d552c1e63..000000000 --- a/vendor/xflags-macros/tests/it/src/help.rs +++ /dev/null @@ -1,25 +0,0 @@ -xflags! { - /// Does stuff - /// - /// Helpful stuff. - cmd helpful - /// With an arg. - optional src: PathBuf - /// Another arg. - /// - /// This time, we provide some extra info about the - /// arg. Maybe some caveats, or what kinds of - /// values are accepted. - optional extra: String - { - /// And a switch. - required -s, --switch - - /// And even a subcommand! - cmd sub { - /// With an optional flag. This has a really long - /// description which spans multiple lines. - optional -f, --flag - } - } -} |