diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2024-09-23 06:45:34 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-23 06:45:34 +0200 |
| commit | 9f5cbfb455ee0905b7984fe13d50a8bad76f0247 (patch) | |
| tree | 67a79ef08c5bbfb191ee3944e712301afb5ecc74 /compiler/rustc_feature/src | |
| parent | c1ccdb7d0c434d4daa20004c5beb6050613084b5 (diff) | |
| parent | 95469dc09a9255f6a13d76cae7dc366f90c4db3a (diff) | |
| download | rust-9f5cbfb455ee0905b7984fe13d50a8bad76f0247.tar.gz rust-9f5cbfb455ee0905b7984fe13d50a8bad76f0247.zip | |
Rollup merge of #130705 - compiler-errors:rtn-complete, r=jackh726
No longer mark RTN as incomplete The RFC is accepted and the feature is basically fully implemented. This doesn't mean it's necesarily *ready* for stabiliation; there's probably some diagnostic improvements to be made, and as always, users uncover the most creative bugs. But marking this feature as incomplete no longer serves any purpose, so let's fix that.
Diffstat (limited to 'compiler/rustc_feature/src')
| -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 |
