We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aea9f0a commit 09d073aCopy full SHA for 09d073a
src/librustc_resolve/build_reduced_graph.rs
@@ -30,7 +30,7 @@ use syntax::ext::base::{MacroKind, SyntaxExtension};
30
use syntax::ext::base::Determinacy::Undetermined;
31
use syntax::ext::hygiene::Mark;
32
use syntax::ext::tt::macro_rules;
33
-use syntax::feature_gate::{is_builtin_attr, emit_feature_err, GateIssue};
+use syntax::feature_gate::is_builtin_attr;
34
use syntax::parse::token::{self, Token};
35
use syntax::std_inject::injected_crate_name;
36
use syntax::symbol::keywords;
@@ -349,10 +349,6 @@ impl<'a> Resolver<'a> {
349
.emit();
350
return;
351
} else if orig_name == Some(keywords::SelfLower.name()) {
352
- if !self.session.features_untracked().extern_crate_self {
353
- emit_feature_err(&self.session.parse_sess, "extern_crate_self", item.span,
354
- GateIssue::Language, "`extern crate self` is unstable");
355
- }
356
self.graph_root
357
} else {
358
let crate_id = self.crate_loader.process_extern_crate(item, &self.definitions);
src/libsyntax/feature_gate.rs
@@ -453,9 +453,6 @@ declare_features! (
453
// Adds `reason` and `expect` lint attributes.
454
(active, lint_reasons, "1.31.0", Some(54503), None),
455
456
- // `extern crate self as foo;` puts local crate root into extern prelude under name `foo`.
457
- (active, extern_crate_self, "1.31.0", Some(56409), None),
458
-
459
// Allows paths to enum variants on type aliases.
460
(active, type_alias_enum_variants, "1.31.0", Some(49683), None),
461
@@ -685,6 +682,8 @@ declare_features! (
685
682
(accepted, uniform_paths, "1.32.0", Some(53130), None),
686
683
// Allows `cfg(target_vendor = "...")`.
687
684
(accepted, cfg_target_vendor, "1.33.0", Some(29718), None),
+ // `extern crate self as foo;` puts local crate root into extern prelude under name `foo`.
+ (accepted, extern_crate_self, "1.34.0", Some(56409), None),
688
);
689
690
// If you change this, please modify `src/doc/unstable-book` as well. You must
src/test/ui/feature-gates/feature-gate-extern_crate_self.rs
src/test/ui/feature-gates/feature-gate-extern_crate_self.stderr
src/test/ui/imports/extern-crate-self-fail.rs src/test/ui/imports/extern-crate-self/extern-crate-self-fail.rs
@@ -1,5 +1,3 @@
1
-#![feature(extern_crate_self)]
2
3
extern crate self; //~ ERROR `extern crate self;` requires renaming
4
5
#[macro_use] //~ ERROR `macro_use` is not supported on `extern crate self`
src/test/ui/imports/extern-crate-self-fail.stderr src/test/ui/imports/extern-crate-self/extern-crate-self-fail.stderr
@@ -1,11 +1,11 @@
error: `extern crate self;` requires renaming
- --> $DIR/extern-crate-self-fail.rs:3:1
+ --> $DIR/extern-crate-self-fail.rs:1:1
|
LL | extern crate self; //~ ERROR `extern crate self;` requires renaming
| ^^^^^^^^^^^^^^^^^^ help: try: `extern crate self as name;`
6
7
error: `macro_use` is not supported on `extern crate self`
8
- --> $DIR/extern-crate-self-fail.rs:5:1
+ --> $DIR/extern-crate-self-fail.rs:3:1
9
10
LL | #[macro_use] //~ ERROR `macro_use` is not supported on `extern crate self`
11
| ^^^^^^^^^^^^
src/test/ui/imports/extern-crate-self/extern-crate-self-macro-alias.rs
@@ -0,0 +1,16 @@
+// run-pass
+
+// Test that a macro can correctly expand the alias
+// in an `extern crate self as ALIAS` item.
+fn the_answer() -> usize { 42 }
+macro_rules! alias_self {
+ ($alias:ident) => { extern crate self as $alias; }
+}
12
+alias_self!(the_alias);
13
14
+fn main() {
15
+ assert_eq!(the_alias::the_answer(), 42);
16
src/test/ui/imports/extern-crate-self/extern-crate-self-macro-item.rs
@@ -0,0 +1,12 @@
+// compile-pass
+// Test that `extern crate self;` is accepted
+// syntactically as an item for use in a macro.
+macro_rules! accept_item { ($x:item) => {} }
+accept_item! {
+ extern crate self;
+fn main() {}
src/test/ui/imports/extern-crate-self/extern-crate-self-macro-self.rs
+// Test that a macro can correctly expand `self` in
+// an `extern crate self as ALIAS` item.
+macro_rules! extern_something {
+ ($alias:ident) => { extern crate $alias as the_alias; }
+extern_something!(self);
src/test/ui/imports/extern-crate-self-pass.rs src/test/ui/imports/extern-crate-self/extern-crate-self-pass.rs
@@ -1,7 +1,5 @@
// compile-pass
extern crate self as foo;
struct S;
0 commit comments