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

Clean up E0307 explanation #69055

Merged
merged 1 commit into from
Feb 11, 2020
Merged
Changes from all commits
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
20 changes: 17 additions & 3 deletions src/librustc_error_codes/error_codes/E0307.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
This error indicates that the `self` parameter in a method has an invalid
"receiver type".
The `self` parameter in a method has an invalid "receiver type".

Erroneous code example:

```compile_fail,E0307
struct Foo;
struct Bar;

trait Trait {
fn foo(&self);
}

impl Trait for Foo {
fn foo(self: &Bar) {}
}
```

Methods take a special first parameter, of which there are three variants:
`self`, `&self`, and `&mut self`. These are syntactic sugar for
Expand Down Expand Up @@ -36,7 +50,7 @@ impl Trait for Foo {
}
```

E0307 will be emitted by the compiler when using an invalid receiver type,
This error will be emitted by the compiler when using an invalid receiver type,
like in the following example:

```compile_fail,E0307
Expand Down