Sign in
android
/
platform
/
external
/
rust
/
crates
/
structopt
/
0e55a517d840d223c459f967f4c8dc207e7bb827
/
.
/
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
();
}