diff options
| author | Michael Goulet <michael@errs.io> | 2024-03-05 18:23:01 +0000 |
|---|---|---|
| committer | Michael Goulet <michael@errs.io> | 2024-03-08 20:56:25 +0000 |
| commit | c63f3feb0fcde0d59004f30ab8f8d2f38da74754 (patch) | |
| tree | 19efd92b3e468d6e8daad87148b01e1fbda09430 /library/alloc/src/lib.rs | |
| parent | a655e648a9f94d74263108366b83e677af56e35d (diff) | |
| download | rust-c63f3feb0fcde0d59004f30ab8f8d2f38da74754.tar.gz rust-c63f3feb0fcde0d59004f30ab8f8d2f38da74754.zip | |
Stabilize associated type bounds
Diffstat (limited to 'library/alloc/src/lib.rs')
| -rw-r--r-- | library/alloc/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/alloc/src/lib.rs b/library/alloc/src/lib.rs index 28695ade5bf..31cb9c9a8e2 100644 --- a/library/alloc/src/lib.rs +++ b/library/alloc/src/lib.rs @@ -172,12 +172,12 @@ // // Language features: // tidy-alphabetical-start +#![cfg_attr(bootstrap, feature(associated_type_bounds))] #![cfg_attr(not(test), feature(coroutine_trait))] #![cfg_attr(test, feature(panic_update_hook))] #![cfg_attr(test, feature(test))] #![feature(allocator_internals)] #![feature(allow_internal_unstable)] -#![feature(associated_type_bounds)] #![feature(c_unwind)] #![feature(cfg_sanitize)] #![feature(const_mut_refs)] |
