Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 95469dc

Browse files
committedSep 22, 2024·
No longer mark RTN as incomplete
1 parent 4ae36d9 commit 95469dc

File tree

64 files changed

+77
-430
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+77
-430
lines changed
 

‎compiler/rustc_feature/src/unstable.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,7 @@ declare_features! (
578578
/// be used to describe E or vise-versa.
579579
(unstable, result_ffi_guarantees, "1.80.0", Some(110503)),
580580
/// Allows bounding the return type of AFIT/RPITIT.
581-
(incomplete, return_type_notation, "1.70.0", Some(109417)),
581+
(unstable, return_type_notation, "1.70.0", Some(109417)),
582582
/// Allows `extern "rust-cold"`.
583583
(unstable, rust_cold_cc, "1.63.0", Some(97544)),
584584
/// Allows use of x86 SHA512, SM3 and SM4 target-features and intrinsics

‎tests/ui/associated-type-bounds/return-type-notation/bad-inputs-and-output.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
//@ edition: 2021
22

33
#![feature(return_type_notation)]
4-
//~^ WARN the feature `return_type_notation` is incomplete
54

65
trait Trait {
76
async fn method() {}

0 commit comments

Comments
 (0)
Please sign in to comment.