1error: The long name of "--foo" was already used here. 2 --> tests/ui/duplicate-name/duplicate-long-name.rs:4:5 3 | 44 | / /// foo1 55 | | #[argh(option, long = "foo")] 66 | | foo1: u32, 7 | |_____________^ 8 9error: Later usage here. 10 --> tests/ui/duplicate-name/duplicate-long-name.rs:8:5 11 | 128 | / /// foo2 139 | | #[argh(option, long = "foo")] 1410 | | foo2: u32, 15 | |_____________^ 16 17error: The long name of "--bar" was already used here. 18 --> tests/ui/duplicate-name/duplicate-long-name.rs:12:5 19 | 2012 | / /// bar1 2113 | | #[argh(option, long = "bar")] 2214 | | bar1: u32, 23 | |_____________^ 24 25error: Later usage here. 26 --> tests/ui/duplicate-name/duplicate-long-name.rs:16:5 27 | 2816 | / /// bar2 2917 | | #[argh(option, long = "bar")] 3018 | | bar2: u32, 31 | |_____________^ 32