diff options
| author | bors <bors@rust-lang.org> | 2024-09-23 04:56:10 +0000 | 
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-09-23 04:56:10 +0000 | 
| commit | 702987f75b74f789ba227ee04a3d7bb1680c2309 (patch) | |
| tree | a7056e093f9d3596604c4bf561fc55475007883a /compiler/rustc_feature/src/unstable.rs | |
| parent | 66b0b29e65c77e5801c308e725a233c0728df300 (diff) | |
| parent | 693269b2be59f36d1c95a6e57ee44b2002dc65e9 (diff) | |
| download | rust-702987f75b74f789ba227ee04a3d7bb1680c2309.tar.gz rust-702987f75b74f789ba227ee04a3d7bb1680c2309.zip | |
Auto merge of #130732 - matthiaskrgr:rollup-ke1j314, r=matthiaskrgr
Rollup of 10 pull requests
Successful merges:
 - #129550 (Add str.as_str() for easy Deref to string slices)
 - #130344 (Handle unsized consts with type `str`  in v0 symbol mangling)
 - #130659 (Support `char::encode_utf16` in const scenarios.)
 - #130705 (No longer mark RTN as incomplete)
 - #130712 (Don't call `ty::Const::normalize` in error reporting)
 - #130713 (Mark `u8::make_ascii_uppercase` and `u8::make_ascii_lowercase` as const.)
 - #130714 (Introduce `structurally_normalize_const`, use it in `rustc_hir_typeck`)
 - #130715 (Replace calls to `ty::Const::{try_}eval` in mir build/pattern analysis)
 - #130723 (Add test for `available_parallelism()`)
 - #130726 (tests: Remove spuriously failing vec-tryinto-array codegen test)
r? `@ghost`
`@rustbot` modify labels: rollup
Diffstat (limited to 'compiler/rustc_feature/src/unstable.rs')
| -rw-r--r-- | compiler/rustc_feature/src/unstable.rs | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/compiler/rustc_feature/src/unstable.rs b/compiler/rustc_feature/src/unstable.rs index 408da6d5d86..0b09e9fbb85 100644 --- a/compiler/rustc_feature/src/unstable.rs +++ b/compiler/rustc_feature/src/unstable.rs @@ -578,7 +578,7 @@ declare_features! ( /// be used to describe E or vise-versa. (unstable, result_ffi_guarantees, "1.80.0", Some(110503)), /// Allows bounding the return type of AFIT/RPITIT. - (incomplete, return_type_notation, "1.70.0", Some(109417)), + (unstable, return_type_notation, "1.70.0", Some(109417)), /// Allows `extern "rust-cold"`. (unstable, rust_cold_cc, "1.63.0", Some(97544)), /// Allows use of x86 SHA512, SM3 and SM4 target-features and intrinsics | 
