1
Fork 0

Auto merge of #30015 - petrochenkov:staged, r=brson

Closes https://github.com/rust-lang/rust/issues/30008

`#[stable]`, `#[unstable]` and `#[rustc_deprecated]` are now guarded by `#[feature(staged_api)]`

r? @brson
This commit is contained in:
bors 2015-11-26 10:22:37 +00:00
commit 6d88afe477
58 changed files with 47 additions and 84 deletions

View file

@ -11,7 +11,7 @@
#![cfg_attr(stage0, feature(custom_attribute))]
#![crate_name = "alloc_jemalloc"]
#![crate_type = "rlib"]
#![staged_api]
#![cfg_attr(stage0, staged_api)]
#![no_std]
#![cfg_attr(not(stage0), allocator)]
#![cfg_attr(stage0, allow(improper_ctypes))]