From b583711ff965db3b113ad6f468f32ad6ec1330a3 Mon Sep 17 00:00:00 2001 From: Eduard Burtescu Date: Tue, 2 Aug 2016 09:02:19 +0300 Subject: [PATCH] Ignore the lang-items example in the book. --- src/doc/book/lang-items.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/book/lang-items.md b/src/doc/book/lang-items.md index b948567ac5b..72a3c08225d 100644 --- a/src/doc/book/lang-items.md +++ b/src/doc/book/lang-items.md @@ -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]