diff options
| author | Jacob Pratt <jacob@jhpratt.dev> | 2025-01-10 03:55:22 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-10 03:55:22 -0500 |
| commit | ee521dfd038e7331ba36796c25c2d311a274c1ce (patch) | |
| tree | a4113c2184071abdf7ad342b975bd32df23677e7 /compiler | |
| parent | 0dcbda8225fda5373d958d128d4d722fcc9cb2d0 (diff) | |
| parent | 7c91f898ba9d89f0ba630b93d38b1c5b9b8b006b (diff) | |
| download | rust-ee521dfd038e7331ba36796c25c2d311a274c1ce.tar.gz rust-ee521dfd038e7331ba36796c25c2d311a274c1ce.zip | |
Rollup merge of #135320 - camelid:coroutines-typo, r=lqd
Fix typo in `#[coroutine]` gating error
Diffstat (limited to 'compiler')
| -rw-r--r-- | compiler/rustc_feature/src/builtin_attrs.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_feature/src/builtin_attrs.rs b/compiler/rustc_feature/src/builtin_attrs.rs index 5421517046d..3c3bbc8c31d 100644 --- a/compiler/rustc_feature/src/builtin_attrs.rs +++ b/compiler/rustc_feature/src/builtin_attrs.rs @@ -572,7 +572,7 @@ pub const BUILTIN_ATTRIBUTES: &[BuiltinAttribute] = &[ // `#[coroutine]` attribute to be applied to closures to make them coroutines instead gated!( coroutine, Normal, template!(Word), ErrorFollowing, - EncodeCrossCrate::No, coroutines, experimental!(coroutines) + EncodeCrossCrate::No, coroutines, experimental!(coroutine) ), // RFC 3543 |
