aboutsummaryrefslogtreecommitdiff
path: root/structopt/tests/ui/positional_bool.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'structopt/tests/ui/positional_bool.stderr')
-rw-r--r--structopt/tests/ui/positional_bool.stderr10
1 files changed, 10 insertions, 0 deletions
diff --git a/structopt/tests/ui/positional_bool.stderr b/structopt/tests/ui/positional_bool.stderr
new file mode 100644
index 0000000..c3ed1ad
--- /dev/null
+++ b/structopt/tests/ui/positional_bool.stderr
@@ -0,0 +1,10 @@
+error: `bool` cannot be used as positional parameter with default parser
+
+ = help: if you want to create a flag add `long` or `short`
+ = help: If you really want a boolean parameter add an explicit parser, for example `parse(try_from_str)`
+ = note: see also https://github.com/TeXitoi/structopt/tree/master/examples/true_or_false.rs
+
+ --> $DIR/positional_bool.rs:5:14
+ |
+5 | verbose: bool,
+ | ^^^^