forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#41052 - topecongiro:overlapping_inherent_im…
…pls, r=estebank Make 'overlapping_inherent_impls' lint a hard error This is ought to be implemented in PR rust-lang#40728. Unfortunately, when I rebased the PR to resolve merge conflict, the "hard error" code disappeared. This PR complements the initial PR. Now the following rust code gives the following error: ```rust struct Foo; impl Foo { fn id() {} } impl Foo { fn id() {} } fn main() {} ``` ``` error[E0592]: duplicate definitions with name `id` --> /home/topecongiro/test.rs:4:5 | 4 | fn id() {} | ^^^^^^^^^^ duplicate definitions for `id` ... 8 | fn id() {} | ---------- other definition for `id` error: aborting due to previous error ```
- Loading branch information
Showing
5 changed files
with
53 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
src/test/ui/codemap_tests/coherence-overlapping-inherent-impl-trait.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
error[E0592]: duplicate definitions with name `f` | ||
--> $DIR/coherence-overlapping-inherent-impl-trait.rs:14:10 | ||
| | ||
14 | impl C { fn f() {} } | ||
| ^^^^^^^^^ duplicate definitions for `f` | ||
15 | impl C { fn f() {} } | ||
| --------- other definition for `f` | ||
|
||
error: aborting due to previous error | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
src/test/ui/codemap_tests/overlapping_inherent_impls.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
error[E0592]: duplicate definitions with name `id` | ||
--> $DIR/overlapping_inherent_impls.rs:19:5 | ||
| | ||
19 | fn id() {} | ||
| ^^^^^^^^^^ duplicate definitions for `id` | ||
... | ||
23 | fn id() {} | ||
| ---------- other definition for `id` | ||
|
||
error[E0592]: duplicate definitions with name `bar` | ||
--> $DIR/overlapping_inherent_impls.rs:29:5 | ||
| | ||
29 | fn bar(&self) {} | ||
| ^^^^^^^^^^^^^^^^ duplicate definitions for `bar` | ||
... | ||
33 | fn bar(&self) {} | ||
| ---------------- other definition for `bar` | ||
|
||
error[E0592]: duplicate definitions with name `baz` | ||
--> $DIR/overlapping_inherent_impls.rs:39:5 | ||
| | ||
39 | fn baz(&self) {} | ||
| ^^^^^^^^^^^^^^^^ duplicate definitions for `baz` | ||
... | ||
43 | fn baz(&self) {} | ||
| ---------------- other definition for `baz` | ||
|
||
error: aborting due to 3 previous errors | ||
|