Add note about using nightly rust in vec tutorial

This should save future readers some time.
pull/181/head
Clifton King 6 years ago committed by GitHub
parent 3e6e1001dc
commit 926cee11d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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