diff options
author | bors <bors@rust-lang.org> | 2016-11-08 02:06:45 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-08 02:06:45 -0800 |
commit | 38a959a543dfc70a67e64f7d369ed6c9e12fc806 (patch) | |
tree | 711c672b069b6753631e2bf8e809991a88028bce /src/doc/reference.md | |
parent | 57f971bc1610ef57c57616822c60aadc7e477904 (diff) | |
parent | 74bb5945635b5aaacd238632932baaa294694ce3 (diff) | |
download | rust-38a959a543dfc70a67e64f7d369ed6c9e12fc806.tar.gz |
Auto merge of #36843 - petrochenkov:dotstab, r=nikomatsakis
Stabilize `..` in tuple (struct) patterns
I'd like to nominate `..` in tuple and tuple struct patterns for stabilization.
This feature is a relatively small extension to existing stable functionality and doesn't have known blockers.
The feature first appeared in Rust 1.10 6 months ago.
An example of use: https://github.com/rust-lang/rust/pull/36203
Closes https://github.com/rust-lang/rust/issues/33627
r? @nikomatsakis
Diffstat (limited to 'src/doc/reference.md')
-rw-r--r-- | src/doc/reference.md | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/doc/reference.md b/src/doc/reference.md index 5c372fb7816..98238e27133 100644 --- a/src/doc/reference.md +++ b/src/doc/reference.md @@ -2479,8 +2479,6 @@ The currently implemented features of the reference compiler are: * - `abi_vectorcall` - Allows the usage of the vectorcall calling convention (e.g. `extern "vectorcall" func fn_();`) -* - `dotdot_in_tuple_patterns` - Allows `..` in tuple (struct) patterns. - * - `abi_sysv64` - Allows the usage of the system V AMD64 calling convention (e.g. `extern "sysv64" func fn_();`) |