about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMasaki Hara <ackie.h.gmai@gmail.com>2017-06-25 07:32:00 +0900
committerMasaki Hara <ackie.h.gmai@gmail.com>2017-06-29 21:25:35 +0900
commit141265dfe8eb345d3218c771db957a93d6c7f000 (patch)
tree80b62bbbbe0cc250f5a71689c963323cc3c4b35d
parent03660b647690c3dea12a20468f9f798bacd14d82 (diff)
downloadrust-141265dfe8eb345d3218c771db957a93d6c7f000.tar.gz
rust-141265dfe8eb345d3218c771db957a93d6c7f000.zip
Give a tracking-issue number for unsized tuple coercion.
-rw-r--r--src/doc/unstable-book/src/language-features/unsized-tuple-coercion.md4
-rw-r--r--src/libsyntax/feature_gate.rs2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/doc/unstable-book/src/language-features/unsized-tuple-coercion.md b/src/doc/unstable-book/src/language-features/unsized-tuple-coercion.md
index c243737e1be..200a9c19462 100644
--- a/src/doc/unstable-book/src/language-features/unsized-tuple-coercion.md
+++ b/src/doc/unstable-book/src/language-features/unsized-tuple-coercion.md
@@ -1,8 +1,8 @@
 # `unsized_tuple_coercion`
 
-The tracking issue for this feature is: [#XXXXX]
+The tracking issue for this feature is: [#42877]
 
-[#XXXXX]: https://github.com/rust-lang/rust/issues/XXXXX
+[#42877]: https://github.com/rust-lang/rust/issues/42877
 
 ------------------------
 
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs
index 5de9062de74..df8ee189d21 100644
--- a/src/libsyntax/feature_gate.rs
+++ b/src/libsyntax/feature_gate.rs
@@ -359,7 +359,7 @@ declare_features! (
     (active, allow_fail, "1.19.0", Some(42219)),
 
     // Allows unsized tuple coercion.
-    (active, unsized_tuple_coercion, "1.20.0", None),
+    (active, unsized_tuple_coercion, "1.20.0", Some(42877)),
 );
 
 declare_features! (