1 2 3 4 5 6 7 8 9 10
use pound::Parse; // `global` requires a named flag/option, not a positional #[derive(Parse)] struct Bad { #[pound(global)] name: String, } fn main() {}