]> git.lizzy.rs Git - rust.git/commitdiff
rustc_resolve: crates only exist in the type namespace.
authorEduard-Mihai Burtescu <edy.burt@gmail.com>
Tue, 14 Aug 2018 08:26:44 +0000 (11:26 +0300)
committerEduard-Mihai Burtescu <edy.burt@gmail.com>
Tue, 14 Aug 2018 08:26:44 +0000 (11:26 +0300)
src/librustc_resolve/resolve_imports.rs
src/test/run-pass/issue-53333.rs [new file with mode: 0644]

index 1d8cc609f95ac6da1276ab59c97d2dc6818f2193..35e58bc9fee0db6a95f286ebce191c9fc9e8f886 100644 (file)
@@ -194,13 +194,14 @@ pub fn resolve_ident_in_module_unadjusted(&mut self,
                     }
 
                     // Fall back to resolving to an external crate.
-                    if !self.extern_prelude.contains(&ident.name) {
+                    if !(ns == TypeNS && self.extern_prelude.contains(&ident.name)) {
                         // ... unless the crate name is not in the `extern_prelude`.
                         return binding;
                     }
                 }
 
                 let crate_root = if
+                    ns == TypeNS &&
                     root != keywords::Extern.name() &&
                     (
                         ident.name == keywords::Crate.name() ||
@@ -208,7 +209,7 @@ pub fn resolve_ident_in_module_unadjusted(&mut self,
                     )
                 {
                     self.resolve_crate_root(ident)
-                } else if !ident.is_path_segment_keyword() {
+                } else if ns == TypeNS && !ident.is_path_segment_keyword() {
                     let crate_id =
                         self.crate_loader.process_path_extern(ident.name, ident.span);
                     self.get_module(DefId { krate: crate_id, index: CRATE_DEF_INDEX })
diff --git a/src/test/run-pass/issue-53333.rs b/src/test/run-pass/issue-53333.rs
new file mode 100644 (file)
index 0000000..51b90af
--- /dev/null
@@ -0,0 +1,17 @@
+// Copyright 2018 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.
+
+// edition:2018
+
+fn main() {
+    use std;
+    let std = "std";
+    println!("{}", std);
+}