rust/library/core
Matthias Krüger 6cf2d185ea
Rollup merge of #139157 - mejrs:never, r=Noratrieb
Remove mention of `exhaustive_patterns` from `never` docs

The example shows an exhaustive match:
```rust
#![feature(exhaustive_patterns)]
use std::str::FromStr;
let Ok(s) = String::from_str("hello");
```
But https://github.com/rust-lang/rust/issues/119612 moved this functionality to `#![feature(min_exhaustive_patterns)` and then stabilized it.
2025-03-31 14:36:23 +02:00
..
src Rollup merge of #139157 - mejrs:never, r=Noratrieb 2025-03-31 14:36:23 +02:00
Cargo.toml Migrate core to Rust 2024 2025-03-11 09:46:34 -07:00