Merge pull request #2810 from Aaronepower/stable_feature_flags

Removed stable feature flags
This commit is contained in:
Oliver Schneider 2018-05-28 12:59:25 +02:00 committed by GitHub
commit b979f62aab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 92 additions and 101 deletions

View File

@ -4,14 +4,11 @@
#![feature(rustc_private)] #![feature(rustc_private)]
#![feature(slice_patterns)] #![feature(slice_patterns)]
#![feature(stmt_expr_attributes)] #![feature(stmt_expr_attributes)]
#![feature(conservative_impl_trait)]
#![feature(range_contains)] #![feature(range_contains)]
#![feature(macro_vis_matcher)] #![feature(macro_vis_matcher)]
#![allow(unknown_lints, indexing_slicing, shadow_reuse, missing_docs_in_private_items)] #![allow(unknown_lints, indexing_slicing, shadow_reuse, missing_docs_in_private_items)]
#![recursion_limit = "256"] #![recursion_limit = "256"]
// FIXME(mark-i-m) remove after i128 stablization merges
#![allow(stable_features)] #![allow(stable_features)]
#![feature(i128, i128_type)]
#![feature(iterator_find_map)] #![feature(iterator_find_map)]

View File

@ -1,6 +1,4 @@
#![allow(stable_features)]
#![feature(conservative_impl_trait)]
#![deny(needless_lifetimes)] #![deny(needless_lifetimes)]
#![allow(dead_code)] #![allow(dead_code)]

View File

@ -2,10 +2,6 @@
#![allow(blacklisted_name)] #![allow(blacklisted_name)]
#![deny(replace_consts)] #![deny(replace_consts)]
// FIXME(mark-i-m) remove after i128 stablization merges
#![allow(stable_features)]
#![feature(i128, i128_type)]
use std::sync::atomic::*; use std::sync::atomic::*;
use std::sync::{ONCE_INIT, Once}; use std::sync::{ONCE_INIT, Once};

View File

@ -1,7 +1,7 @@
error: using `ATOMIC_BOOL_INIT` error: using `ATOMIC_BOOL_INIT`
--> $DIR/replace_consts.rs:16:17 --> $DIR/replace_consts.rs:12:17
| |
16 | { let foo = ATOMIC_BOOL_INIT; }; 12 | { let foo = ATOMIC_BOOL_INIT; };
| ^^^^^^^^^^^^^^^^ help: try this: `AtomicBool::new(false)` | ^^^^^^^^^^^^^^^^ help: try this: `AtomicBool::new(false)`
| |
note: lint level defined here note: lint level defined here
@ -11,207 +11,207 @@ note: lint level defined here
| ^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^
error: using `ATOMIC_ISIZE_INIT` error: using `ATOMIC_ISIZE_INIT`
--> $DIR/replace_consts.rs:17:17 --> $DIR/replace_consts.rs:13:17
| |
17 | { let foo = ATOMIC_ISIZE_INIT; }; 13 | { let foo = ATOMIC_ISIZE_INIT; };
| ^^^^^^^^^^^^^^^^^ help: try this: `AtomicIsize::new(0)` | ^^^^^^^^^^^^^^^^^ help: try this: `AtomicIsize::new(0)`
error: using `ATOMIC_I8_INIT` error: using `ATOMIC_I8_INIT`
--> $DIR/replace_consts.rs:18:17 --> $DIR/replace_consts.rs:14:17
| |
18 | { let foo = ATOMIC_I8_INIT; }; 14 | { let foo = ATOMIC_I8_INIT; };
| ^^^^^^^^^^^^^^ help: try this: `AtomicI8::new(0)` | ^^^^^^^^^^^^^^ help: try this: `AtomicI8::new(0)`
error: using `ATOMIC_I16_INIT` error: using `ATOMIC_I16_INIT`
--> $DIR/replace_consts.rs:19:17 --> $DIR/replace_consts.rs:15:17
| |
19 | { let foo = ATOMIC_I16_INIT; }; 15 | { let foo = ATOMIC_I16_INIT; };
| ^^^^^^^^^^^^^^^ help: try this: `AtomicI16::new(0)` | ^^^^^^^^^^^^^^^ help: try this: `AtomicI16::new(0)`
error: using `ATOMIC_I32_INIT` error: using `ATOMIC_I32_INIT`
--> $DIR/replace_consts.rs:20:17 --> $DIR/replace_consts.rs:16:17
| |
20 | { let foo = ATOMIC_I32_INIT; }; 16 | { let foo = ATOMIC_I32_INIT; };
| ^^^^^^^^^^^^^^^ help: try this: `AtomicI32::new(0)` | ^^^^^^^^^^^^^^^ help: try this: `AtomicI32::new(0)`
error: using `ATOMIC_I64_INIT` error: using `ATOMIC_I64_INIT`
--> $DIR/replace_consts.rs:21:17 --> $DIR/replace_consts.rs:17:17
| |
21 | { let foo = ATOMIC_I64_INIT; }; 17 | { let foo = ATOMIC_I64_INIT; };
| ^^^^^^^^^^^^^^^ help: try this: `AtomicI64::new(0)` | ^^^^^^^^^^^^^^^ help: try this: `AtomicI64::new(0)`
error: using `ATOMIC_USIZE_INIT` error: using `ATOMIC_USIZE_INIT`
--> $DIR/replace_consts.rs:22:17 --> $DIR/replace_consts.rs:18:17
| |
22 | { let foo = ATOMIC_USIZE_INIT; }; 18 | { let foo = ATOMIC_USIZE_INIT; };
| ^^^^^^^^^^^^^^^^^ help: try this: `AtomicUsize::new(0)` | ^^^^^^^^^^^^^^^^^ help: try this: `AtomicUsize::new(0)`
error: using `ATOMIC_U8_INIT` error: using `ATOMIC_U8_INIT`
--> $DIR/replace_consts.rs:23:17 --> $DIR/replace_consts.rs:19:17
| |
23 | { let foo = ATOMIC_U8_INIT; }; 19 | { let foo = ATOMIC_U8_INIT; };
| ^^^^^^^^^^^^^^ help: try this: `AtomicU8::new(0)` | ^^^^^^^^^^^^^^ help: try this: `AtomicU8::new(0)`
error: using `ATOMIC_U16_INIT` error: using `ATOMIC_U16_INIT`
--> $DIR/replace_consts.rs:24:17 --> $DIR/replace_consts.rs:20:17
| |
24 | { let foo = ATOMIC_U16_INIT; }; 20 | { let foo = ATOMIC_U16_INIT; };
| ^^^^^^^^^^^^^^^ help: try this: `AtomicU16::new(0)` | ^^^^^^^^^^^^^^^ help: try this: `AtomicU16::new(0)`
error: using `ATOMIC_U32_INIT` error: using `ATOMIC_U32_INIT`
--> $DIR/replace_consts.rs:25:17 --> $DIR/replace_consts.rs:21:17
| |
25 | { let foo = ATOMIC_U32_INIT; }; 21 | { let foo = ATOMIC_U32_INIT; };
| ^^^^^^^^^^^^^^^ help: try this: `AtomicU32::new(0)` | ^^^^^^^^^^^^^^^ help: try this: `AtomicU32::new(0)`
error: using `ATOMIC_U64_INIT` error: using `ATOMIC_U64_INIT`
--> $DIR/replace_consts.rs:22:17
|
22 | { let foo = ATOMIC_U64_INIT; };
| ^^^^^^^^^^^^^^^ help: try this: `AtomicU64::new(0)`
error: using `MIN`
--> $DIR/replace_consts.rs:24:17
|
24 | { let foo = std::isize::MIN; };
| ^^^^^^^^^^^^^^^ help: try this: `isize::min_value()`
error: using `MIN`
--> $DIR/replace_consts.rs:25:17
|
25 | { let foo = std::i8::MIN; };
| ^^^^^^^^^^^^ help: try this: `i8::min_value()`
error: using `MIN`
--> $DIR/replace_consts.rs:26:17 --> $DIR/replace_consts.rs:26:17
| |
26 | { let foo = ATOMIC_U64_INIT; }; 26 | { let foo = std::i16::MIN; };
| ^^^^^^^^^^^^^^^ help: try this: `AtomicU64::new(0)` | ^^^^^^^^^^^^^ help: try this: `i16::min_value()`
error: using `MIN`
--> $DIR/replace_consts.rs:27:17
|
27 | { let foo = std::i32::MIN; };
| ^^^^^^^^^^^^^ help: try this: `i32::min_value()`
error: using `MIN` error: using `MIN`
--> $DIR/replace_consts.rs:28:17 --> $DIR/replace_consts.rs:28:17
| |
28 | { let foo = std::isize::MIN; }; 28 | { let foo = std::i64::MIN; };
| ^^^^^^^^^^^^^^^ help: try this: `isize::min_value()` | ^^^^^^^^^^^^^ help: try this: `i64::min_value()`
error: using `MIN` error: using `MIN`
--> $DIR/replace_consts.rs:29:17 --> $DIR/replace_consts.rs:29:17
| |
29 | { let foo = std::i8::MIN; }; 29 | { let foo = std::i128::MIN; };
| ^^^^^^^^^^^^ help: try this: `i8::min_value()` | ^^^^^^^^^^^^^^ help: try this: `i128::min_value()`
error: using `MIN` error: using `MIN`
--> $DIR/replace_consts.rs:30:17 --> $DIR/replace_consts.rs:30:17
| |
30 | { let foo = std::i16::MIN; }; 30 | { let foo = std::usize::MIN; };
| ^^^^^^^^^^^^^ help: try this: `i16::min_value()` | ^^^^^^^^^^^^^^^ help: try this: `usize::min_value()`
error: using `MIN` error: using `MIN`
--> $DIR/replace_consts.rs:31:17 --> $DIR/replace_consts.rs:31:17
| |
31 | { let foo = std::i32::MIN; }; 31 | { let foo = std::u8::MIN; };
| ^^^^^^^^^^^^^ help: try this: `i32::min_value()` | ^^^^^^^^^^^^ help: try this: `u8::min_value()`
error: using `MIN` error: using `MIN`
--> $DIR/replace_consts.rs:32:17 --> $DIR/replace_consts.rs:32:17
| |
32 | { let foo = std::i64::MIN; }; 32 | { let foo = std::u16::MIN; };
| ^^^^^^^^^^^^^ help: try this: `i64::min_value()` | ^^^^^^^^^^^^^ help: try this: `u16::min_value()`
error: using `MIN` error: using `MIN`
--> $DIR/replace_consts.rs:33:17 --> $DIR/replace_consts.rs:33:17
| |
33 | { let foo = std::i128::MIN; }; 33 | { let foo = std::u32::MIN; };
| ^^^^^^^^^^^^^^ help: try this: `i128::min_value()` | ^^^^^^^^^^^^^ help: try this: `u32::min_value()`
error: using `MIN` error: using `MIN`
--> $DIR/replace_consts.rs:34:17 --> $DIR/replace_consts.rs:34:17
| |
34 | { let foo = std::usize::MIN; }; 34 | { let foo = std::u64::MIN; };
| ^^^^^^^^^^^^^^^ help: try this: `usize::min_value()` | ^^^^^^^^^^^^^ help: try this: `u64::min_value()`
error: using `MIN` error: using `MIN`
--> $DIR/replace_consts.rs:35:17 --> $DIR/replace_consts.rs:35:17
| |
35 | { let foo = std::u8::MIN; }; 35 | { let foo = std::u128::MIN; };
| ^^^^^^^^^^^^ help: try this: `u8::min_value()` | ^^^^^^^^^^^^^^ help: try this: `u128::min_value()`
error: using `MIN` error: using `MAX`
--> $DIR/replace_consts.rs:36:17
|
36 | { let foo = std::u16::MIN; };
| ^^^^^^^^^^^^^ help: try this: `u16::min_value()`
error: using `MIN`
--> $DIR/replace_consts.rs:37:17 --> $DIR/replace_consts.rs:37:17
| |
37 | { let foo = std::u32::MIN; }; 37 | { let foo = std::isize::MAX; };
| ^^^^^^^^^^^^^ help: try this: `u32::min_value()` | ^^^^^^^^^^^^^^^ help: try this: `isize::max_value()`
error: using `MIN` error: using `MAX`
--> $DIR/replace_consts.rs:38:17 --> $DIR/replace_consts.rs:38:17
| |
38 | { let foo = std::u64::MIN; }; 38 | { let foo = std::i8::MAX; };
| ^^^^^^^^^^^^^ help: try this: `u64::min_value()` | ^^^^^^^^^^^^ help: try this: `i8::max_value()`
error: using `MIN` error: using `MAX`
--> $DIR/replace_consts.rs:39:17 --> $DIR/replace_consts.rs:39:17
| |
39 | { let foo = std::u128::MIN; }; 39 | { let foo = std::i16::MAX; };
| ^^^^^^^^^^^^^^ help: try this: `u128::min_value()` | ^^^^^^^^^^^^^ help: try this: `i16::max_value()`
error: using `MAX`
--> $DIR/replace_consts.rs:40:17
|
40 | { let foo = std::i32::MAX; };
| ^^^^^^^^^^^^^ help: try this: `i32::max_value()`
error: using `MAX` error: using `MAX`
--> $DIR/replace_consts.rs:41:17 --> $DIR/replace_consts.rs:41:17
| |
41 | { let foo = std::isize::MAX; }; 41 | { let foo = std::i64::MAX; };
| ^^^^^^^^^^^^^^^ help: try this: `isize::max_value()` | ^^^^^^^^^^^^^ help: try this: `i64::max_value()`
error: using `MAX` error: using `MAX`
--> $DIR/replace_consts.rs:42:17 --> $DIR/replace_consts.rs:42:17
| |
42 | { let foo = std::i8::MAX; }; 42 | { let foo = std::i128::MAX; };
| ^^^^^^^^^^^^ help: try this: `i8::max_value()` | ^^^^^^^^^^^^^^ help: try this: `i128::max_value()`
error: using `MAX` error: using `MAX`
--> $DIR/replace_consts.rs:43:17 --> $DIR/replace_consts.rs:43:17
| |
43 | { let foo = std::i16::MAX; }; 43 | { let foo = std::usize::MAX; };
| ^^^^^^^^^^^^^ help: try this: `i16::max_value()` | ^^^^^^^^^^^^^^^ help: try this: `usize::max_value()`
error: using `MAX` error: using `MAX`
--> $DIR/replace_consts.rs:44:17 --> $DIR/replace_consts.rs:44:17
| |
44 | { let foo = std::i32::MAX; }; 44 | { let foo = std::u8::MAX; };
| ^^^^^^^^^^^^^ help: try this: `i32::max_value()` | ^^^^^^^^^^^^ help: try this: `u8::max_value()`
error: using `MAX` error: using `MAX`
--> $DIR/replace_consts.rs:45:17 --> $DIR/replace_consts.rs:45:17
| |
45 | { let foo = std::i64::MAX; }; 45 | { let foo = std::u16::MAX; };
| ^^^^^^^^^^^^^ help: try this: `i64::max_value()` | ^^^^^^^^^^^^^ help: try this: `u16::max_value()`
error: using `MAX` error: using `MAX`
--> $DIR/replace_consts.rs:46:17 --> $DIR/replace_consts.rs:46:17
| |
46 | { let foo = std::i128::MAX; }; 46 | { let foo = std::u32::MAX; };
| ^^^^^^^^^^^^^^ help: try this: `i128::max_value()` | ^^^^^^^^^^^^^ help: try this: `u32::max_value()`
error: using `MAX` error: using `MAX`
--> $DIR/replace_consts.rs:47:17 --> $DIR/replace_consts.rs:47:17
| |
47 | { let foo = std::usize::MAX; }; 47 | { let foo = std::u64::MAX; };
| ^^^^^^^^^^^^^^^ help: try this: `usize::max_value()` | ^^^^^^^^^^^^^ help: try this: `u64::max_value()`
error: using `MAX` error: using `MAX`
--> $DIR/replace_consts.rs:48:17 --> $DIR/replace_consts.rs:48:17
| |
48 | { let foo = std::u8::MAX; }; 48 | { let foo = std::u128::MAX; };
| ^^^^^^^^^^^^ help: try this: `u8::max_value()`
error: using `MAX`
--> $DIR/replace_consts.rs:49:17
|
49 | { let foo = std::u16::MAX; };
| ^^^^^^^^^^^^^ help: try this: `u16::max_value()`
error: using `MAX`
--> $DIR/replace_consts.rs:50:17
|
50 | { let foo = std::u32::MAX; };
| ^^^^^^^^^^^^^ help: try this: `u32::max_value()`
error: using `MAX`
--> $DIR/replace_consts.rs:51:17
|
51 | { let foo = std::u64::MAX; };
| ^^^^^^^^^^^^^ help: try this: `u64::max_value()`
error: using `MAX`
--> $DIR/replace_consts.rs:52:17
|
52 | { let foo = std::u128::MAX; };
| ^^^^^^^^^^^^^^ help: try this: `u128::max_value()` | ^^^^^^^^^^^^^^ help: try this: `u128::max_value()`
error: aborting due to 35 previous errors error: aborting due to 35 previous errors