diff options
| author | Esteban Küber <esteban@kuber.com.ar> | 2019-03-19 13:17:25 -0700 |
|---|---|---|
| committer | Esteban Küber <esteban@kuber.com.ar> | 2019-03-19 13:17:25 -0700 |
| commit | 757eb679927e2c85457f567487e887eb080eb7cb (patch) | |
| tree | b50c36252f34f8ec34afbc0668d3a1601014f219 /src/libsyntax/ast.rs | |
| parent | 6007e6f649feac9a0cb39270444033f8dbfa9259 (diff) | |
| download | rust-757eb679927e2c85457f567487e887eb080eb7cb.tar.gz rust-757eb679927e2c85457f567487e887eb080eb7cb.zip | |
review comments
Diffstat (limited to 'src/libsyntax/ast.rs')
| -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 5da00ef8ebe..2cbd2dfeb25 100644 --- a/src/libsyntax/ast.rs +++ b/src/libsyntax/ast.rs @@ -620,7 +620,7 @@ pub enum PatKind { /// A struct or struct variant pattern (e.g., `Variant {x, y, ..}`). /// The `bool` is `true` in the presence of a `..`. - Struct(Path, Vec<Spanned<FieldPat>>, bool), + Struct(Path, Vec<Spanned<FieldPat>>, /* recovered */ bool), /// A tuple struct/variant pattern (`Variant(x, y, .., z)`). /// If the `..` pattern fragment is present, then `Option<usize>` denotes its position. |
