File tree Expand file tree Collapse file tree 3 files changed +2
-16
lines changed
src/tools/rust-analyzer/crates/ide-db/src/generated Expand file tree Collapse file tree 3 files changed +2
-16
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ impl [u8] {
52
52
/// Same as `to_ascii_lowercase(a) == to_ascii_lowercase(b)`,
53
53
/// but without allocating and copying temporaries.
54
54
#[ stable( feature = "ascii_methods_on_intrinsics" , since = "1.23.0" ) ]
55
- #[ rustc_const_unstable ( feature = "const_eq_ignore_ascii_case" , issue = "131719 " ) ]
55
+ #[ rustc_const_stable ( feature = "const_eq_ignore_ascii_case" , since = "CURRENT_RUSTC_VERSION " ) ]
56
56
#[ must_use]
57
57
#[ inline]
58
58
pub const fn eq_ignore_ascii_case ( & self , other : & [ u8 ] ) -> bool {
Original file line number Diff line number Diff line change @@ -2671,7 +2671,7 @@ impl str {
2671
2671
/// assert!(!"Ferrös".eq_ignore_ascii_case("FERRÖS"));
2672
2672
/// ```
2673
2673
#[ stable( feature = "ascii_methods_on_intrinsics" , since = "1.23.0" ) ]
2674
- #[ rustc_const_unstable ( feature = "const_eq_ignore_ascii_case" , issue = "131719 " ) ]
2674
+ #[ rustc_const_stable ( feature = "const_eq_ignore_ascii_case" , since = "CURRENT_RUSTC_VERSION " ) ]
2675
2675
#[ must_use]
2676
2676
#[ inline]
2677
2677
pub const fn eq_ignore_ascii_case ( & self , other : & str ) -> bool {
Original file line number Diff line number Diff line change @@ -4451,20 +4451,6 @@ The tracking issue for this feature is: [#133214]
4451
4451
4452
4452
[#133214]: https://github.com/rust-lang/rust/issues/133214
4453
4453
4454
- ------------------------
4455
- "##,
4456
- default_severity: Severity::Allow,
4457
- warn_since: None,
4458
- deny_since: None,
4459
- },
4460
- Lint {
4461
- label: "const_eq_ignore_ascii_case",
4462
- description: r##"# `const_eq_ignore_ascii_case`
4463
-
4464
- The tracking issue for this feature is: [#131719]
4465
-
4466
- [#131719]: https://github.com/rust-lang/rust/issues/131719
4467
-
4468
4454
------------------------
4469
4455
"##,
4470
4456
default_severity: Severity::Allow,
You can’t perform that action at this time.
0 commit comments