Add compile_error!() to the unsable book

This commit is contained in:
Wesley Wiser 2017-06-16 21:45:46 -04:00
parent 0b29d26079
commit 2bec12f036

View file

@ -0,0 +1,20 @@
# `compile_error`
The tracking issue for this feature is: [#40872]
[#29599]: https://github.com/rust-lang/rust/issues/40872
------------------------
The `compile_error` feature adds a macro which will generate a compilation
error with the specified error message.
## Examples
```rust
#![feature(compile_error)]
fn main() {
compile_error!("The error message"); //ERROR The error message
}
```