about summary refs log tree commit diff
path: root/src/libcore
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/libcore
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/libcore')
-rw-r--r--src/libcore/macros.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/macros.rs b/src/libcore/macros.rs
index ae74016ad74..2edf8e1fa88 100644
--- a/src/libcore/macros.rs
+++ b/src/libcore/macros.rs
@@ -574,7 +574,7 @@ 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]
     #[cfg(dox)]
     macro_rules! compile_error { ($msg:expr) => ({ /* compiler built-in */ }) }