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

Contexually dependent error message for E0424 when value is assigned to "self" #56572

Merged
merged 1 commit into from
Dec 14, 2018
Merged
Show file tree
Hide file tree
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
19 changes: 16 additions & 3 deletions src/librustc_resolve/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3010,6 +3010,7 @@ impl<'a, 'crateloader: 'a> Resolver<'a, 'crateloader> {
// Visit all direct subpatterns of this pattern.
let outer_pat_id = pat.id;
pat.walk(&mut |pat| {
debug!("resolve_pattern pat={:?} node={:?}", pat, pat.node);
match pat.node {
PatKind::Ident(bmode, ident, ref opt_pat) => {
// First try to resolve the identifier as some existing
Expand Down Expand Up @@ -3166,6 +3167,7 @@ impl<'a, 'crateloader: 'a> Resolver<'a, 'crateloader> {
format!("not found in {}", mod_str),
item_span)
};

let code = DiagnosticId::Error(code.into());
let mut err = this.session.struct_span_err_with_code(base_span, &base_msg, code);

Expand All @@ -3189,11 +3191,22 @@ impl<'a, 'crateloader: 'a> Resolver<'a, 'crateloader> {
return (err, Vec::new());
}
if is_self_value(path, ns) {
debug!("smart_resolve_path_fragment E0424 source:{:?}", source);

__diagnostic_used!(E0424);
err.code(DiagnosticId::Error("E0424".into()));
err.span_label(span, format!("`self` value is a keyword \
only available in \
methods with `self` parameter"));
err.span_label(span, match source {
PathSource::Pat => {
format!("`self` value is a keyword \
and may not be bound to \
variables or shadowed")
}
_ => {
format!("`self` value is a keyword \
only available in methods \
with `self` parameter")
}
});
return (err, Vec::new());
}

Expand Down
1 change: 1 addition & 0 deletions src/test/ui/error-codes/E0424.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,5 @@ impl Foo {
}

fn main () {
let self = "self"; //~ ERROR E0424
}
8 changes: 7 additions & 1 deletion src/test/ui/error-codes/E0424.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ error[E0424]: expected value, found module `self`
LL | self.bar(); //~ ERROR E0424
| ^^^^ `self` value is a keyword only available in methods with `self` parameter

error: aborting due to previous error
error[E0424]: expected unit struct/variant or constant, found module `self`
--> $DIR/E0424.rs:22:9
|
LL | let self = "self"; //~ ERROR E0424
| ^^^^ `self` value is a keyword and may not be bound to variables or shadowed

error: aborting due to 2 previous errors

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