aboutsummaryrefslogtreecommitdiff
path: root/tests/ui/duplicate-name/duplicate-short-name.stderr
blob: 9262a7d9441a464ad89eab651ade3a03172206b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
error: The short name of "-f" was already used here.
 --> tests/ui/duplicate-name/duplicate-short-name.rs:4:5
  |
4 | /     /// foo1
5 | |     #[argh(option, short = 'f')]
6 | |     foo1: u32,
  | |_____________^

error: Later usage here.
  --> tests/ui/duplicate-name/duplicate-short-name.rs:8:5
   |
8  | /     /// foo2
9  | |     #[argh(option, short = 'f')]
10 | |     foo2: u32,
   | |_____________^

error: The short name of "-b" was already used here.
  --> tests/ui/duplicate-name/duplicate-short-name.rs:12:5
   |
12 | /     /// bar1
13 | |     #[argh(option, short = 'b')]
14 | |     bar1: u32,
   | |_____________^

error: Later usage here.
  --> tests/ui/duplicate-name/duplicate-short-name.rs:16:5
   |
16 | /     /// bar2
17 | |     #[argh(option, short = 'b')]
18 | |     bar2: u32,
   | |_____________^