diff options
| author | Ralf Jung <post@ralfj.de> | 2025-06-15 12:14:05 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-15 12:14:05 +0000 |
| commit | 5770b90356dbb25e53e2bf51722d1f840df15415 (patch) | |
| tree | 47690c255eb9b79639b9eb3ae1aa4c9c732e138b /src/doc/rustc-dev-guide | |
| parent | 3951b5511167ba1ac4f41498c2bb8946a7a04e26 (diff) | |
| parent | 19beef420548f5cd55387d79593f0b39490145a7 (diff) | |
| download | rust-5770b90356dbb25e53e2bf51722d1f840df15415.tar.gz rust-5770b90356dbb25e53e2bf51722d1f840df15415.zip | |
Merge pull request #4400 from RalfJung/rustup
Rustup
Diffstat (limited to 'src/doc/rustc-dev-guide')
| -rw-r--r-- | src/doc/rustc-dev-guide/src/implementing_new_features.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/rustc-dev-guide/src/implementing_new_features.md b/src/doc/rustc-dev-guide/src/implementing_new_features.md index d7561bbbad2..5d0e875cbc1 100644 --- a/src/doc/rustc-dev-guide/src/implementing_new_features.md +++ b/src/doc/rustc-dev-guide/src/implementing_new_features.md @@ -156,8 +156,8 @@ a new unstable feature: [`incomplete_features` lint]: https://doc.rust-lang.org/rustc/lints/listing/warn-by-default.html#incomplete-features ```rust ignore - /// Allows unsized rvalues at arguments and parameters. - (incomplete, unsized_locals, "CURRENT_RUSTC_VERSION", Some(48055), None), + /// Allows deref patterns. + (incomplete, deref_patterns, "CURRENT_RUSTC_VERSION", Some(87121), None), ``` To avoid [semantic merge conflicts], please use `CURRENT_RUSTC_VERSION` instead of `1.70` or |
