Skip to content

Commit 54cd824

Browse files
committed
Remove effect of #[no_link] attribute on name resolution
Previously it hid all non-macro names from other crates. This has no relation to linking and can change name resolution behavior in some cases (e.g. glob conflicts), in addition to just producing the "unresolved name" errors
1 parent 16d8a91 commit 54cd824

File tree

3 files changed

+3
-19
lines changed

3 files changed

+3
-19
lines changed

compiler/rustc_metadata/src/rmeta/decoder.rs

+1-9
Original file line numberDiff line numberDiff line change
@@ -1099,10 +1099,7 @@ impl<'a, 'tcx> CrateMetadataRef<'a> {
10991099
};
11001100

11011101
// Iterate over all children.
1102-
let macros_only = self.dep_kind.lock().macros_only();
1103-
if !macros_only {
1104-
let children = self.root.tables.children.get(self, id).unwrap_or_else(Lazy::empty);
1105-
1102+
if let Some(children) = self.root.tables.children.get(self, id) {
11061103
for child_index in children.decode((self, sess)) {
11071104
// Get the item.
11081105
let child_kind = match self.maybe_kind(child_index) {
@@ -1200,11 +1197,6 @@ impl<'a, 'tcx> CrateMetadataRef<'a> {
12001197

12011198
if let EntryKind::Mod(exports) = kind {
12021199
for exp in exports.decode((self, sess)) {
1203-
match exp.res {
1204-
Res::Def(DefKind::Macro(..), _) => {}
1205-
_ if macros_only => continue,
1206-
_ => {}
1207-
}
12081200
callback(exp);
12091201
}
12101202
}

src/test/ui/no-link.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1+
// check-pass
12
// aux-build:empty-struct.rs
23

34
#[no_link]
45
extern crate empty_struct;
56

67
fn main() {
7-
empty_struct::XEmpty1; //~ ERROR cannot find value `XEmpty1` in crate `empty_struct`
8+
empty_struct::XEmpty1 {};
89
}

src/test/ui/no-link.stderr

-9
This file was deleted.

0 commit comments

Comments
 (0)