From b418cd23068b1074e78d8631aec923b865bcc583 Mon Sep 17 00:00:00 2001 From: Vadim Petrochenkov Date: Thu, 10 Mar 2016 22:01:38 +0300 Subject: [PATCH] Cleanup + Fix a comment and add a test based on it --- src/librustc_resolve/lib.rs | 48 ++++++++++++-------------------- src/test/run-pass/issue-20427.rs | 14 ++++++++++ 2 files changed, 32 insertions(+), 30 deletions(-) diff --git a/src/librustc_resolve/lib.rs b/src/librustc_resolve/lib.rs index a54338b6360..231bf666dea 100644 --- a/src/librustc_resolve/lib.rs +++ b/src/librustc_resolve/lib.rs @@ -2616,6 +2616,19 @@ impl<'a, 'tcx> Resolver<'a, 'tcx> { // Try to find a path to an item in a module. let last_ident = segments.last().unwrap().identifier; + // Resolve a single identifier with fallback to primitive types + let resolve_identifier_with_fallback = |this: &mut Self, record_used| { + let def = this.resolve_identifier(last_ident, namespace, record_used); + match def { + None | Some(LocalDef{def: Def::Mod(..), ..}) if namespace == TypeNS => + this.primitive_type_table + .primitive_types + .get(&last_ident.unhygienic_name) + .map_or(def, |prim_ty| Some(LocalDef::from_def(Def::PrimTy(*prim_ty)))), + _ => def + } + }; + if segments.len() == 1 { // In `a(::assoc_item)*` `a` cannot be a module. If `a` does resolve to a module we // don't report an error right away, but try to fallback to a primitive type. @@ -2623,20 +2636,17 @@ impl<'a, 'tcx> Resolver<'a, 'tcx> { // // use std::u8; // bring module u8 in scope // fn f() -> u8 { // OK, resolves to primitive u8, not to std::u8 - // u8::MAX // OK, resolves to associated constant ::MAX, - // // not to non-existent std::u8::MAX + // u8::max_value() // OK, resolves to associated function ::max_value, + // // not to non-existent std::u8::max_value // } // // Such behavior is required for backward compatibility. // The same fallback is used when `a` resolves to nothing. - let unqualified_def = self.resolve_identifier_with_fallback(last_ident, namespace, true); - return unqualified_def.and_then(|def| self.adjust_local_def(def, span)) - .map(|def| { - PathResolution::new(def, path_depth) - }); + let unqualified_def = resolve_identifier_with_fallback(self, true); + return unqualified_def.and_then(|def| self.adjust_local_def(def, span)).map(mk_res); } - let unqualified_def = self.resolve_identifier_with_fallback(last_ident, namespace, false); + let unqualified_def = resolve_identifier_with_fallback(self, false); let def = self.resolve_module_relative_path(span, segments, namespace); match (def, unqualified_def) { (Some(d), Some(ref ud)) if d == ud.def => { @@ -2652,28 +2662,6 @@ impl<'a, 'tcx> Resolver<'a, 'tcx> { def.map(mk_res) } - // Resolve a single identifier with fallback to primitive types - fn resolve_identifier_with_fallback(&mut self, - identifier: hir::Ident, - namespace: Namespace, - check_ribs: bool, - record_used: bool) - -> Option { - let def = self.resolve_identifier(identifier, namespace, check_ribs, record_used); - match def { - None | Some(LocalDef{def: Def::Mod(..), ..}) if namespace == TypeNS => { - if let Some(&prim_ty) = self.primitive_type_table - .primitive_types - .get(&identifier.unhygienic_name) { - Some(LocalDef::from_def(Def::PrimTy(prim_ty))) - } else { - def - } - } - _ => def - } - } - // Resolve a single identifier fn resolve_identifier(&mut self, identifier: hir::Ident, diff --git a/src/test/run-pass/issue-20427.rs b/src/test/run-pass/issue-20427.rs index 43674ccf543..dd3d952224c 100644 --- a/src/test/run-pass/issue-20427.rs +++ b/src/test/run-pass/issue-20427.rs @@ -9,6 +9,8 @@ // except according to those terms. // aux-build:i8.rs +// ignore-pretty (#23623) + extern crate i8; use std::string as i16; static i32: i32 = 0; @@ -66,6 +68,17 @@ mod reuse { } } +mod guard { + pub fn check() { + use std::u8; // bring module u8 in scope + fn f() -> u8 { // OK, resolves to primitive u8, not to std::u8 + u8::max_value() // OK, resolves to associated function ::max_value, + // not to non-existent std::u8::max_value + } + assert_eq!(f(), u8::MAX); // OK, resolves to std::u8::MAX + } +} + fn main() { let bool = true; let _ = match bool { @@ -74,4 +87,5 @@ fn main() { }; reuse::check::(); + guard::check(); }