about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/doc/unstable-book/src/language-features/box-syntax.md4
-rw-r--r--src/libsyntax/feature_gate.rs2
-rw-r--r--src/test/ui/feature-gate-box-expr.stderr2
-rw-r--r--src/test/ui/feature-gate-box_syntax.stderr2
4 files changed, 5 insertions, 5 deletions
diff --git a/src/doc/unstable-book/src/language-features/box-syntax.md b/src/doc/unstable-book/src/language-features/box-syntax.md
index 50e59231a4d..414dc48e557 100644
--- a/src/doc/unstable-book/src/language-features/box-syntax.md
+++ b/src/doc/unstable-book/src/language-features/box-syntax.md
@@ -1,8 +1,8 @@
 # `box_syntax`
 
-The tracking issue for this feature is: [#27779]
+The tracking issue for this feature is: [#49733]
 
-[#27779]: https://github.com/rust-lang/rust/issues/27779
+[#49733]: https://github.com/rust-lang/rust/issues/49733
 
 See also [`box_patterns`](language-features/box-patterns.html)
 
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs
index 6d1b415587f..7fd989d1fe0 100644
--- a/src/libsyntax/feature_gate.rs
+++ b/src/libsyntax/feature_gate.rs
@@ -145,7 +145,7 @@ declare_features! (
     // rustc internal
     (active, rustc_diagnostic_macros, "1.0.0", None, None),
     (active, rustc_const_unstable, "1.0.0", None, None),
-    (active, box_syntax, "1.0.0", Some(27779), None),
+    (active, box_syntax, "1.0.0", Some(49733), None),
     (active, unboxed_closures, "1.0.0", Some(29625), None),
 
     (active, fundamental, "1.0.0", Some(29635), None),
diff --git a/src/test/ui/feature-gate-box-expr.stderr b/src/test/ui/feature-gate-box-expr.stderr
index 72f2f08b5b8..7b235da7ed7 100644
--- a/src/test/ui/feature-gate-box-expr.stderr
+++ b/src/test/ui/feature-gate-box-expr.stderr
@@ -1,4 +1,4 @@
-error[E0658]: box expression syntax is experimental; you can call `Box::new` instead. (see issue #27779)
+error[E0658]: box expression syntax is experimental; you can call `Box::new` instead. (see issue #49733)
   --> $DIR/feature-gate-box-expr.rs:22:13
    |
 LL |     let x = box 'c'; //~ ERROR box expression syntax is experimental
diff --git a/src/test/ui/feature-gate-box_syntax.stderr b/src/test/ui/feature-gate-box_syntax.stderr
index 7058512417b..d45dee2970b 100644
--- a/src/test/ui/feature-gate-box_syntax.stderr
+++ b/src/test/ui/feature-gate-box_syntax.stderr
@@ -1,4 +1,4 @@
-error[E0658]: box expression syntax is experimental; you can call `Box::new` instead. (see issue #27779)
+error[E0658]: box expression syntax is experimental; you can call `Box::new` instead. (see issue #49733)
   --> $DIR/feature-gate-box_syntax.rs:14:13
    |
 LL |     let x = box 3;