Add note about using nightly rust in vec tutorial

This should save future readers some time.
pull/182/head
Clifton King 6 years ago
parent fac31bc0c9
commit 2068049e5d

@ -69,6 +69,8 @@ Unfortunately the mechanism for stating that your value is non-zero is
unstable and unlikely to be stabilized soon. As such we're just going to unstable and unlikely to be stabilized soon. As such we're just going to
take the hit and use std's Unique: take the hit and use std's Unique:
*Note: using `#![feature(_)]` requires you use the nightly rust channel. You can enable this via `$ rustup override set nightly` in your project or via [other precedence overrides](https://github.com/rust-lang/rustup#override-precedence).*
```rust ```rust
#![feature(ptr_internals)] #![feature(ptr_internals)]

Loading…
Cancel
Save