diff options
| author | Rich Kadel <richkadel@google.com> | 2020-07-28 17:45:58 -0700 |
|---|---|---|
| committer | Rich Kadel <richkadel@google.com> | 2020-07-28 17:45:58 -0700 |
| commit | b58afc088f34341cdffad8d12bf1a13331ff7deb (patch) | |
| tree | eca5257a2fbbeb10f4b598c166221b09a2e00eb2 /src/librustc_codegen_ssa/lib.rs | |
| parent | 20f55c193dea0a893c869dd7a9cf3e2298635221 (diff) | |
| download | rust-b58afc088f34341cdffad8d12bf1a13331ff7deb.tar.gz rust-b58afc088f34341cdffad8d12bf1a13331ff7deb.zip | |
FunctionCoverage: improve type checking with newtype_index types
Diffstat (limited to 'src/librustc_codegen_ssa/lib.rs')
| -rw-r--r-- | src/librustc_codegen_ssa/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/librustc_codegen_ssa/lib.rs b/src/librustc_codegen_ssa/lib.rs index 5735bf56791..85260d30a3d 100644 --- a/src/librustc_codegen_ssa/lib.rs +++ b/src/librustc_codegen_ssa/lib.rs @@ -8,6 +8,8 @@ #![feature(or_patterns)] #![feature(trusted_len)] #![feature(associated_type_bounds)] +#![feature(const_fn)] // for rustc_index::newtype_index +#![feature(const_panic)] // for rustc_index::newtype_index #![recursion_limit = "256"] //! This crate contains codegen code that is used by all codegen backends (LLVM and others). |
