]> git.proxmox.com Git - rustc.git/blob - src/test/ui/codemap_tests/overlapping_inherent_impls.stderr
New upstream version 1.19.0+dfsg1
[rustc.git] / src / test / ui / codemap_tests / overlapping_inherent_impls.stderr
1 error[E0592]: duplicate definitions with name `id`
2 --> $DIR/overlapping_inherent_impls.rs:19:5
3 |
4 19 | fn id() {}
5 | ^^^^^^^^^^ duplicate definitions for `id`
6 ...
7 23 | fn id() {}
8 | ---------- other definition for `id`
9
10 error[E0592]: duplicate definitions with name `bar`
11 --> $DIR/overlapping_inherent_impls.rs:29:5
12 |
13 29 | fn bar(&self) {}
14 | ^^^^^^^^^^^^^^^^ duplicate definitions for `bar`
15 ...
16 33 | fn bar(&self) {}
17 | ---------------- other definition for `bar`
18
19 error[E0592]: duplicate definitions with name `baz`
20 --> $DIR/overlapping_inherent_impls.rs:39:5
21 |
22 39 | fn baz(&self) {}
23 | ^^^^^^^^^^^^^^^^ duplicate definitions for `baz`
24 ...
25 43 | fn baz(&self) {}
26 | ---------------- other definition for `baz`
27
28 error: aborting due to previous error(s)
29