diff options
| author | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2023-12-31 18:35:49 +0000 |
|---|---|---|
| committer | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2024-06-30 16:42:53 +0000 |
| commit | f23c1fdaeba6a1c8237996ae2efecaf938ba9ef8 (patch) | |
| tree | 44c753560f3747a99af4456de5b1741b5a877fcd /compiler/rustc_index/src/lib.rs | |
| parent | 2975a21b5d6e4718cf219349d3cb37d45c20f84d (diff) | |
| download | rust-f23c1fdaeba6a1c8237996ae2efecaf938ba9ef8.tar.gz rust-f23c1fdaeba6a1c8237996ae2efecaf938ba9ef8.zip | |
Remove usage of specialization from newtype_index!
Diffstat (limited to 'compiler/rustc_index/src/lib.rs')
| -rw-r--r-- | compiler/rustc_index/src/lib.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/compiler/rustc_index/src/lib.rs b/compiler/rustc_index/src/lib.rs index db6b250467e..b775ae1f5e9 100644 --- a/compiler/rustc_index/src/lib.rs +++ b/compiler/rustc_index/src/lib.rs @@ -1,10 +1,7 @@ // tidy-alphabetical-start #![cfg_attr(all(feature = "nightly", test), feature(stmt_expr_attributes))] -#![cfg_attr( - feature = "nightly", - feature(extend_one, min_specialization, new_uninit, step_trait, test) -)] #![cfg_attr(feature = "nightly", allow(internal_features))] +#![cfg_attr(feature = "nightly", feature(extend_one, new_uninit, step_trait, test))] // tidy-alphabetical-end pub mod bit_set; |
