aboutsummaryrefslogtreecommitdiff
path: root/structopt/tests/ui/skip_with_other_options.rs
diff options
context:
space:
mode:
Diffstat (limited to 'structopt/tests/ui/skip_with_other_options.rs')
-rw-r--r--structopt/tests/ui/skip_with_other_options.rs15
1 files changed, 0 insertions, 15 deletions
diff --git a/structopt/tests/ui/skip_with_other_options.rs b/structopt/tests/ui/skip_with_other_options.rs
deleted file mode 100644
index 73c5342..0000000
--- a/structopt/tests/ui/skip_with_other_options.rs
+++ /dev/null
@@ -1,15 +0,0 @@
-use structopt::StructOpt;
-
-#[derive(StructOpt, Debug)]
-#[structopt(name = "test")]
-pub struct Opt {
- #[structopt(long)]
- a: u32,
- #[structopt(skip, long)]
- b: u32,
-}
-
-fn main() {
- let opt = Opt::from_args();
- println!("{:?}", opt);
-}