diff options
| author | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2016-07-17 00:15:15 +0300 |
|---|---|---|
| committer | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2016-09-03 13:37:25 +0300 |
| commit | 1db878fd38eb00daf794d87ab04cb50c7fa6e4fc (patch) | |
| tree | 7e5e32abf460625f4a3f64ec17aeb9a3d825d8e5 /src/libsyntax/ast.rs | |
| parent | a029ea343fe5c9b7cf550902b5a507cd8c22a833 (diff) | |
| download | rust-1db878fd38eb00daf794d87ab04cb50c7fa6e4fc.tar.gz rust-1db878fd38eb00daf794d87ab04cb50c7fa6e4fc.zip | |
Add unions to AST
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 fcb99444957..4394fb0e143 100644 --- a/src/libsyntax/ast.rs +++ b/src/libsyntax/ast.rs @@ -1886,7 +1886,7 @@ pub enum ItemKind { /// A union definition (`union` or `pub union`). /// /// E.g. `union Foo<A, B> { x: A, y: B }` - Union(VariantData, Generics), // FIXME: not yet implemented + Union(VariantData, Generics), /// A Trait declaration (`trait` or `pub trait`). /// /// E.g. `trait Foo { .. }` or `trait Foo<T> { .. }` |
