1
Fork 0

resolve: print location of static for "static in pattern" error

The implementation mirrors the one for "constant defined here" annotation
used for constant patterns in the irrefutable-pattern case.

Fixes: #23716
This commit is contained in:
Georg Brandl 2016-05-02 11:26:34 +02:00
parent 855fb61922
commit 4ba6bf44bd
2 changed files with 54 additions and 11 deletions

View file

@ -158,7 +158,7 @@ enum ResolutionError<'a> {
/// error E0416: identifier is bound more than once in the same pattern /// error E0416: identifier is bound more than once in the same pattern
IdentifierBoundMoreThanOnceInSamePattern(&'a str), IdentifierBoundMoreThanOnceInSamePattern(&'a str),
/// error E0417: static variables cannot be referenced in a pattern /// error E0417: static variables cannot be referenced in a pattern
StaticVariableReference, StaticVariableReference(DefId, Option<Name>),
/// error E0418: is not an enum variant, struct or const /// error E0418: is not an enum variant, struct or const
NotAnEnumVariantStructOrConst(&'a str), NotAnEnumVariantStructOrConst(&'a str),
/// error E0419: unresolved enum variant, struct or const /// error E0419: unresolved enum variant, struct or const
@ -367,12 +367,24 @@ fn resolve_struct_error<'b, 'a: 'b, 'tcx: 'a>(resolver: &'b Resolver<'a, 'tcx>,
"identifier `{}` is bound more than once in the same pattern", "identifier `{}` is bound more than once in the same pattern",
identifier) identifier)
} }
ResolutionError::StaticVariableReference => { ResolutionError::StaticVariableReference(did, name) => {
struct_span_err!(resolver.session, let mut err = struct_span_err!(resolver.session,
span, span,
E0417, E0417,
"static variables cannot be referenced in a pattern, use a \ "static variables cannot be referenced in a \
`const` instead") pattern, use a `const` instead");
if let Some(sp) = resolver.ast_map.span_if_local(did) {
err.span_note(sp, "static variable defined here");
}
if let Some(name) = name {
if let Some(binding) = resolver.current_module
.resolve_name_in_lexical_scope(name, ValueNS) {
if binding.is_import() {
err.span_note(binding.span, "static variable imported here");
}
}
}
err
} }
ResolutionError::NotAnEnumVariantStructOrConst(name) => { ResolutionError::NotAnEnumVariantStructOrConst(name) => {
struct_span_err!(resolver.session, struct_span_err!(resolver.session,
@ -2374,10 +2386,11 @@ impl<'a, 'tcx> Resolver<'a, 'tcx> {
Def::Variant(..) | Def::Const(..) => { Def::Variant(..) | Def::Const(..) => {
self.record_def(pattern.id, path_res); self.record_def(pattern.id, path_res);
} }
Def::Static(..) => { Def::Static(did, _) => {
resolve_error(&self, resolve_error(&self,
path.span, path.span,
ResolutionError::StaticVariableReference); ResolutionError::StaticVariableReference(
did, None));
self.record_def(pattern.id, err_path_resolution()); self.record_def(pattern.id, err_path_resolution());
} }
_ => { _ => {
@ -2517,8 +2530,9 @@ impl<'a, 'tcx> Resolver<'a, 'tcx> {
Some(def @ Def::Const(..)) | Some(def @ Def::AssociatedConst(..)) => { Some(def @ Def::Const(..)) | Some(def @ Def::AssociatedConst(..)) => {
FoundConst(def, ident.unhygienic_name) FoundConst(def, ident.unhygienic_name)
} }
Some(Def::Static(..)) => { Some(Def::Static(did, _)) => {
resolve_error(self, span, ResolutionError::StaticVariableReference); resolve_error(self, span, ResolutionError::StaticVariableReference(
did, Some(ident.unhygienic_name)));
BareIdentifierPatternUnresolved BareIdentifierPatternUnresolved
} }
_ => BareIdentifierPatternUnresolved, _ => BareIdentifierPatternUnresolved,

View file

@ -0,0 +1,29 @@
// Copyright 2016 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
static foo: i32 = 0;
//~^ NOTE static variable defined here
fn bar(foo: i32) {}
//~^ ERROR static variables cannot be referenced in a pattern, use a `const` instead
mod submod {
pub static answer: i32 = 42;
//~^ NOTE static variable defined here
}
use self::submod::answer;
//~^ NOTE static variable imported here
fn question(answer: i32) {}
//~^ ERROR static variables cannot be referenced in a pattern, use a `const` instead
fn main() {
}