diff options
| author | Matthias Krüger <476013+matthiaskrgr@users.noreply.github.com> | 2025-03-31 14:36:23 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-31 14:36:23 +0200 |
| commit | 6cf2d185eaae1c7ef56aa78c8930117ac950c1ae (patch) | |
| tree | 406e21f1c7b33abc2b42755ac86ba8df89acd3d4 /tests/coverage/assert-ne.cov-map | |
| parent | b17948ad522b42665bcd1718f8c01b17c17fc9db (diff) | |
| parent | 73d33ed1bafdf3c0b32e936492eb6a9cdd9b080c (diff) | |
| download | rust-6cf2d185eaae1c7ef56aa78c8930117ac950c1ae.tar.gz rust-6cf2d185eaae1c7ef56aa78c8930117ac950c1ae.zip | |
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 `#