diff options
| author | bors <bors@rust-lang.org> | 2015-08-16 05:10:23 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-08-16 05:10:23 +0000 |
| commit | 9165a4e2dcaaa878a33379c6ff097c68f0ca0485 (patch) | |
| tree | 26f976828c10dbfb3e895569bfa434c6bc6e650b /src/liballoc/lib.rs | |
| parent | fc7efab3ab48e119e1a59281c26e666634ad1224 (diff) | |
| parent | 8ef1e3b77f0f0c365c6c11ebc5095997c8f0cd15 (diff) | |
| download | rust-9165a4e2dcaaa878a33379c6ff097c68f0ca0485.tar.gz rust-9165a4e2dcaaa878a33379c6ff097c68f0ca0485.zip | |
Auto merge of #27818 - alexcrichton:tag-all-the-issues, r=aturon
This commit turns `#[unstable]` attributes missing an `issue` annotation into a hard error. This will require the libs team to ensure that there's a tracking issue for all unstable features in the standard library. All existing unstable features have had issues created and they've all been updated. Yay! Closes #26868
Diffstat (limited to 'src/liballoc/lib.rs')
| -rw-r--r-- | src/liballoc/lib.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/liballoc/lib.rs b/src/liballoc/lib.rs index 2db9cc7c4d8..630993d8291 100644 --- a/src/liballoc/lib.rs +++ b/src/liballoc/lib.rs @@ -64,7 +64,8 @@ #![allow(unused_attributes)] #![unstable(feature = "alloc", reason = "this library is unlikely to be stabilized in its current \ - form or name")] + form or name", + issue = "27783")] #![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "https://doc.rust-lang.org/favicon.ico", html_root_url = "https://doc.rust-lang.org/nightly/", @@ -131,7 +132,8 @@ pub mod raw_vec; /// Common out-of-memory routine #[cold] #[inline(never)] -#[unstable(feature = "oom", reason = "not a scrutinized interface")] +#[unstable(feature = "oom", reason = "not a scrutinized interface", + issue = "27700")] pub fn oom() -> ! { // FIXME(#14674): This really needs to do something other than just abort // here, but any printing done must be *guaranteed* to not |
