diff options
| author | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2016-08-26 19:23:42 +0300 |
|---|---|---|
| committer | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2016-09-04 12:27:01 +0300 |
| commit | 6f7e51e49b7d74f8112cf048fcbd377d0db7c326 (patch) | |
| tree | 603417fa7fdf74561479a4050f269e53d559cf2f /src/libsyntax | |
| parent | 1ca1de6b26ec4740e3f0e8bead7002589024bd14 (diff) | |
| download | rust-6f7e51e49b7d74f8112cf048fcbd377d0db7c326.tar.gz rust-6f7e51e49b7d74f8112cf048fcbd377d0db7c326.zip | |
Replace `_, _, _` with `..`
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/ast.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/ast.rs b/src/libsyntax/ast.rs index 4394fb0e143..bbd33451445 100644 --- a/src/libsyntax/ast.rs +++ b/src/libsyntax/ast.rs @@ -562,7 +562,7 @@ impl Pat { PatKind::Wild | PatKind::Lit(_) | PatKind::Range(_, _) | - PatKind::Ident(_, _, _) | + PatKind::Ident(..) | PatKind::Path(..) | PatKind::Mac(_) => { true |
