Sign in
android
/
platform
/
external
/
rust
/
crates
/
structopt
/
23879ded3cef20e459f19e4ef9c48a0c6a0ac35c
/
.
/
tests
/
ui
/
positional_bool.rs
blob: 4dbf5389ce1cb5bb054058069cae563b48cdeefb [
file
] [
log
] [
blame
]
use
structopt
::
StructOpt
;
#[
derive
(
StructOpt
,
Debug
)]
struct
Opt
{
verbose
:
bool
,
}
fn
main
()
{
Opt
::
from_args
();
}