-
-
Notifications
You must be signed in to change notification settings - Fork 15k
Tracking issue for feature extern_crate_item_prelude #55599
Copy link
Copy link
Closed
Labels
A-edition-2018Area: The 2018 editionArea: The 2018 editionB-unstableBlocker: Implemented in the nightly compiler and unstable.Blocker: Implemented in the nightly compiler and unstable.C-tracking-issueCategory: An issue tracking the progress of sth. like the implementation of an RFCCategory: An issue tracking the progress of sth. like the implementation of an RFCF-rust_2018_preview`#![feature(rust_2018_preview)]``#![feature(rust_2018_preview)]`T-langRelevant to the language teamRelevant to the language team
Metadata
Metadata
Assignees
Labels
A-edition-2018Area: The 2018 editionArea: The 2018 editionB-unstableBlocker: Implemented in the nightly compiler and unstable.Blocker: Implemented in the nightly compiler and unstable.C-tracking-issueCategory: An issue tracking the progress of sth. like the implementation of an RFCCategory: An issue tracking the progress of sth. like the implementation of an RFCF-rust_2018_preview`#![feature(rust_2018_preview)]``#![feature(rust_2018_preview)]`T-langRelevant to the language teamRelevant to the language team
Type
Fields
Give feedbackNo fields configured for issues without a type.
With this feature
extern crate foo as bar;item placed into the crate root puts the namebarinto extern prelude. This has the next effects:use bar::zzz;oruse ::bar::zzz;, plus non-import absolute paths can refer to it as welllet z = ::bar::zzz;.More details are available on the implementation PR - #54658.