about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2017-07-20 15:50:33 -0700
committerAlex Crichton <alex@alexcrichton.com>2017-07-25 07:09:31 -0700
commit20b4f86d13b177bf66d1fa4fefbfcc1bb552cb94 (patch)
treec53a883de937df40bc562f244fef8c5e5dddc903 /src/libstd
parentdaeb6077c87dab99f2d301d06965558b8d064c28 (diff)
downloadrust-20b4f86d13b177bf66d1fa4fefbfcc1bb552cb94.tar.gz
rust-20b4f86d13b177bf66d1fa4fefbfcc1bb552cb94.zip
Stabilize the `compile_error_macro` feature
Stabilizes:

* `compile_error!` as a macro defined by rustc

Closes #40872
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/macros.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/macros.rs b/src/libstd/macros.rs
index 6ad22820a7d..343c499b3ff 100644
--- a/src/libstd/macros.rs
+++ b/src/libstd/macros.rs
@@ -249,7 +249,7 @@ pub mod builtin {
     /// For more information, see the [RFC].
     ///
     /// [RFC]: https://github.com/rust-lang/rfcs/blob/master/text/1695-add-error-macro.md
-    #[unstable(feature = "compile_error_macro", issue = "40872")]
+    #[stable(feature = "compile_error_macro", since = "1.20.0")]
     #[macro_export]
     macro_rules! compile_error { ($msg:expr) => ({ /* compiler built-in */ }) }