diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2024-01-12 08:23:58 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-12 08:23:58 +0100 |
| commit | c738e54f8f9e95d8b75fba1975fb6598680d3b25 (patch) | |
| tree | 2b803ee9ad1b7caf7806547784149a4d44ed72e3 | |
| parent | 5bef2e739fb3104d9aa26798a84e640e8bda2ebc (diff) | |
| parent | c03808f53b1093d76e047d659bf868b421081d6f (diff) | |
| download | rust-c738e54f8f9e95d8b75fba1975fb6598680d3b25.tar.gz rust-c738e54f8f9e95d8b75fba1975fb6598680d3b25.zip | |
Rollup merge of #119865 - eduardosm:bump-version-c_str_literals, r=Nilstrieb
Set `c_str_literals` stabilization version back to `CURRENT_RUSTC_VERSION` `c_str_literals`'s stabilization has been delayed to 1.77 (https://github.com/rust-lang/rust/pull/119528).
| -rw-r--r-- | compiler/rustc_feature/src/accepted.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_feature/src/accepted.rs b/compiler/rustc_feature/src/accepted.rs index aa0db9891a5..6e3996b4509 100644 --- a/compiler/rustc_feature/src/accepted.rs +++ b/compiler/rustc_feature/src/accepted.rs @@ -77,7 +77,7 @@ declare_features! ( /// Allows empty structs and enum variants with braces. (accepted, braced_empty_structs, "1.8.0", Some(29720)), /// Allows `c"foo"` literals. - (accepted, c_str_literals, "1.76.0", Some(105723)), + (accepted, c_str_literals, "CURRENT_RUSTC_VERSION", Some(105723)), /// Allows `#[cfg_attr(predicate, multiple, attributes, here)]`. (accepted, cfg_attr_multi, "1.33.0", Some(54881)), /// Allows the use of `#[cfg(doctest)]`, set when rustdoc is collecting doctests. |
