diff options
| author | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2018-03-19 01:21:30 +0300 |
|---|---|---|
| committer | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2018-04-06 11:48:19 +0300 |
| commit | 62000c072e850f0a102db2b22e08b12d82e3c475 (patch) | |
| tree | aaf83599211a419f8631434cc81964c37b9b2972 /src/libsyntax/parse/parser.rs | |
| parent | 43ad9723181d30dcf7531b0fb0fb975d6590f4c0 (diff) | |
| download | rust-62000c072e850f0a102db2b22e08b12d82e3c475.tar.gz rust-62000c072e850f0a102db2b22e08b12d82e3c475.zip | |
Rename `ast::Variant_::name` into `ident` + Fix rebase
Diffstat (limited to 'src/libsyntax/parse/parser.rs')
| -rw-r--r-- | src/libsyntax/parse/parser.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs index 0c8ffa2ebde..7799cc3800f 100644 --- a/src/libsyntax/parse/parser.rs +++ b/src/libsyntax/parse/parser.rs @@ -6323,7 +6323,7 @@ impl<'a> Parser<'a> { } let vr = ast::Variant_ { - name: ident, + ident, attrs: variant_attrs, data: struct_def, disr_expr, |
