Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add explanation for E0592 #61822

Merged
merged 3 commits into from
Jun 18, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 22 additions & 1 deletion src/librustc_typeck/error_codes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3793,6 +3793,28 @@ details.
[issue #33685]: https://github.com/rust-lang/rust/issues/33685
"##,

E0592: r##"
This error occurs when you defined methods or associated functions with same
name.

For example, in the following code:
JohnTitor marked this conversation as resolved.
Show resolved Hide resolved

```compile_fail,E0592
struct Foo;

impl Foo {
fn bar() {}
}

impl Foo {
fn bar() {}
}
```

A similar error is E0201. The difference is whether there is one declaration
block or not. To avoid this error, you have to give them one name each.
Centril marked this conversation as resolved.
Show resolved Hide resolved
"##,
JohnTitor marked this conversation as resolved.
Show resolved Hide resolved

E0599: r##"
This error occurs when a method is used on a type which doesn't implement it:

Expand Down Expand Up @@ -4771,7 +4793,6 @@ register_diagnostics! {
// but `{}` was found in the type `{}`
E0587, // type has conflicting packed and align representation hints
E0588, // packed type cannot transitively contain a `[repr(align)]` type
E0592, // duplicate definitions with name `{}`
// E0611, // merged into E0616
// E0612, // merged into E0609
// E0613, // Removed (merged with E0609)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ LL | impl dyn C { fn f() {} }

error: aborting due to previous error

For more information about this error, try `rustc --explain E0592`.
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ LL | fn baz(&self) {}

error: aborting due to 3 previous errors

For more information about this error, try `rustc --explain E0592`.
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ LL | impl<X> A<i32, X> { fn f(&self) {} }

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0592`.
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ LL | impl<X> A<i32, X> { fn f(&self) {} }

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0592`.
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ LL | impl<U:Sugar> Cake<Box<U>> { fn dummy(&self) { } }

error: aborting due to previous error

For more information about this error, try `rustc --explain E0592`.
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ LL | impl<U:Sugar> Cake<Box<U>> { fn dummy(&self) { } }

error: aborting due to previous error

For more information about this error, try `rustc --explain E0592`.
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ LL | impl A<i16> { fn dummy(&self) { } }

error: aborting due to previous error

For more information about this error, try `rustc --explain E0592`.
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ LL | impl A<i16> { fn dummy(&self) { } }

error: aborting due to previous error

For more information about this error, try `rustc --explain E0592`.
3 changes: 2 additions & 1 deletion src/test/ui/issues/issue-33140.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,5 @@ LL | | }

error: aborting due to 3 previous errors

For more information about this error, try `rustc --explain E0119`.
Some errors have detailed explanations: E0119, E0592.
For more information about an error, try `rustc --explain E0119`.
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ LL | fn f() {}

error: aborting due to previous error

For more information about this error, try `rustc --explain E0592`.
1 change: 1 addition & 0 deletions src/test/ui/traits/trait-object-auto-dedup-in-impl.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ LL | fn test(&self) { println!("two"); }

error: aborting due to previous error

For more information about this error, try `rustc --explain E0592`.