Change placement of `[Unstable]` marker in RFC 1623 docs.

This commit is contained in:
Chris Krycho 2017-01-28 12:45:54 -05:00 committed by Manish Goregaokar
parent 9797537daf
commit 2549f4b706
1 changed files with 5 additions and 5 deletions

View File

@ -1376,12 +1376,12 @@ unsafe fn bump_levels_unsafe2() -> u32 {
Mutable statics have the same restrictions as normal statics, except that the
type of the value is not required to ascribe to `Sync`.
#### `'static` lifetime elision [unstable]
#### `'static` lifetime elision
Both constant and static declarations of reference types have *implicit*
`'static` lifetimes unless an explicit lifetime is specified. As such, the
constant declarations involving `'static` above may be written without the
lifetimes. Returning to our previous example:
[Unstable] Both constant and static declarations of reference types have
*implicit* `'static` lifetimes unless an explicit lifetime is specified. As
such, the constant declarations involving `'static` above may be written
without the lifetimes. Returning to our previous example:
```rust
#[feature(static_in_const)]