]> git.lizzy.rs Git - rust.git/blob - src/doc/unstable-book/src/the-unstable-book.md
Rollup merge of #106785 - compiler-errors:better-impl-wf-spans, r=estebank
[rust.git] / src / doc / unstable-book / src / the-unstable-book.md
1 # The Unstable Book
2
3 Welcome to the Unstable Book! This book consists of a number of chapters,
4 each one organized by a "feature flag." That is, when using an unstable
5 feature of Rust, you must use a flag, like this:
6
7 ```rust
8 #![feature(box_syntax)]
9
10 fn main() {
11     let five = box 5;
12 }
13 ```
14
15 The `box_syntax` feature [has a chapter][box] describing how to use it.
16
17 [box]: language-features/box-syntax.md
18
19 Because this documentation relates to unstable features, we make no guarantees
20 that what is contained here is accurate or up to date. It's developed on a
21 best-effort basis. Each page will have a link to its tracking issue with the
22 latest developments; you might want to check those as well.