diff options
| author | Sean McArthur <sean.monstar@gmail.com> | 2017-07-06 11:52:25 -0700 |
|---|---|---|
| committer | Sean McArthur <sean.monstar@gmail.com> | 2017-07-06 11:52:25 -0700 |
| commit | 74b2d693589add69cf03588ae0eb336c1be7d52b (patch) | |
| tree | ed50e4811d1305e4a2a444c033a037b9a3018b52 /src/librustc_data_structures | |
| parent | ccf401f8f7847413ac43f38e3c86016becf67b07 (diff) | |
| download | rust-74b2d693589add69cf03588ae0eb336c1be7d52b.tar.gz rust-74b2d693589add69cf03588ae0eb336c1be7d52b.zip | |
remove associated_consts feature gate
Diffstat (limited to 'src/librustc_data_structures')
| -rw-r--r-- | src/librustc_data_structures/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_data_structures/lib.rs b/src/librustc_data_structures/lib.rs index d63b4c9c31b..5d856597cad 100644 --- a/src/librustc_data_structures/lib.rs +++ b/src/librustc_data_structures/lib.rs @@ -29,7 +29,6 @@ #![feature(nonzero)] #![feature(unboxed_closures)] #![feature(fn_traits)] -#![feature(associated_consts)] #![feature(unsize)] #![feature(i128_type)] #![feature(conservative_impl_trait)] @@ -37,6 +36,7 @@ #![feature(specialization)] #![feature(manually_drop)] +#![cfg_attr(stage0, feature(associated_consts))] #![cfg_attr(stage0, feature(struct_field_attributes))] #![cfg_attr(unix, feature(libc))] |
