Ignore the lang-items example in the book.

This commit is contained in:
Eduard Burtescu 2016-08-02 09:02:19 +03:00
parent dbc3391a23
commit b583711ff9

View File

@ -15,7 +15,7 @@ For example, `Box` pointers require two lang items, one for allocation
and one for deallocation. A freestanding program that uses the `Box`
sugar for dynamic allocations via `malloc` and `free`:
```rust
```rust,ignore
#![feature(lang_items, box_syntax, start, libc)]
#![no_std]