Stabilize the compile_error_macro feature

Stabilizes:

* `compile_error!` as a macro defined by rustc

Closes #40872
This commit is contained in:
Alex Crichton
2017-07-20 15:50:33 -07:00
parent daeb6077c8
commit 20b4f86d13
8 changed files with 4 additions and 52 deletions

View File

@@ -8,8 +8,6 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
#![feature(compile_error)]
fn main() {
compile_error!("a very descriptive error message"); //~ ERROR: a very descriptive error message
}