Skip to content

Commit

Permalink
Add compile_error!() to the unsable book
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleywiser committed Jun 19, 2017
1 parent 0b29d26 commit 2bec12f
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/doc/unstable-book/src/language-features/compile-error.md
@@ -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
}
```

0 comments on commit 2bec12f

Please sign in to comment.