diff options
| author | bors <bors@rust-lang.org> | 2016-05-14 09:36:52 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2016-05-14 09:36:52 -0700 |
| commit | 5029a60d8353def48e8d4a020236e7e35a9f07f6 (patch) | |
| tree | bcea115af83e18a18b1379e1d4d359a0abcd380f /src/libsyntax | |
| parent | 5f6eb14b28eab9824492f9f82f5f25ad56dda30a (diff) | |
| parent | 6d6986b87a23ca3fcc62636808ce625fc228bcc0 (diff) | |
| download | rust-5029a60d8353def48e8d4a020236e7e35a9f07f6.tar.gz rust-5029a60d8353def48e8d4a020236e7e35a9f07f6.zip | |
Auto merge of #33568 - nrc:save-json-2, r=pnkfelix
save-analysis: JSON mk2 cc @aochagavia r? @pnkfelix
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/ast.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/libsyntax/ast.rs b/src/libsyntax/ast.rs index d1ad330c58c..e9f3472c4a1 100644 --- a/src/libsyntax/ast.rs +++ b/src/libsyntax/ast.rs @@ -2030,10 +2030,7 @@ pub enum ItemKind { /// A struct definition, e.g. `struct Foo<A> {x: A}` Struct(VariantData, Generics), /// Represents a Trait Declaration - Trait(Unsafety, - Generics, - TyParamBounds, - Vec<TraitItem>), + Trait(Unsafety, Generics, TyParamBounds, Vec<TraitItem>), // Default trait implementations /// |
