diff options
| author | Manish Goregaokar <manishsmail@gmail.com> | 2018-03-08 17:25:57 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-03-08 17:25:57 -0800 |
| commit | 68e7282aa8be0040ca779d7ac7300b1de2900551 (patch) | |
| tree | 5a9cc149d0d3d05e35ca1c145f85a1fc2ce9ebab /src/libsyntax/lib.rs | |
| parent | b0bc601dcc2158fa6ad37c3c04e9db82c34503b7 (diff) | |
| parent | a08cfc4cb6020164372a52080b64280c711d1bd5 (diff) | |
| download | rust-68e7282aa8be0040ca779d7ac7300b1de2900551.tar.gz rust-68e7282aa8be0040ca779d7ac7300b1de2900551.zip | |
Rollup merge of #48801 - Manishearth:epoch-features, r=nikomatsakis
Add functionality for gating feature flags on epochs ; rejigger epoch lints fixes #48794 r? @nikomatsakis
Diffstat (limited to 'src/libsyntax/lib.rs')
| -rw-r--r-- | src/libsyntax/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libsyntax/lib.rs b/src/libsyntax/lib.rs index 14e39b5af42..50e94e5cba7 100644 --- a/src/libsyntax/lib.rs +++ b/src/libsyntax/lib.rs @@ -23,6 +23,7 @@ #![feature(unicode)] #![feature(rustc_diagnostic_macros)] #![feature(match_default_bindings)] +#![feature(non_exhaustive)] #![feature(i128_type)] #![feature(const_atomic_usize_new)] #![feature(rustc_attrs)] @@ -114,6 +115,7 @@ pub mod codemap; #[macro_use] pub mod config; pub mod entry; +pub mod epoch; pub mod feature_gate; pub mod fold; pub mod parse; |
