diff options
| author | Andrew Cann <shum@canndrew.org> | 2016-08-13 18:02:13 +0800 |
|---|---|---|
| committer | Andrew Cann <shum@canndrew.org> | 2016-08-13 21:37:09 +0800 |
| commit | c3131f256d7126cfcf67067f5d9bc8f52c885416 (patch) | |
| tree | 8cd78f3d59e98cf863576fb65a976e6a5d37f944 /src/libsyntax | |
| parent | ef1b50753555a451b47586042c18c03ede302316 (diff) | |
| download | rust-c3131f256d7126cfcf67067f5d9bc8f52c885416.tar.gz rust-c3131f256d7126cfcf67067f5d9bc8f52c885416.zip | |
Fix bug in PostExpansionVisitor
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/feature_gate.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs index 734d8d44256..77fd264b01d 100644 --- a/src/libsyntax/feature_gate.rs +++ b/src/libsyntax/feature_gate.rs @@ -981,7 +981,7 @@ impl<'a> Visitor for PostExpansionVisitor<'a> { ast::TyKind::Never => return, _ => (), }; - visit::walk_ty(self, output_ty) + self.visit_ty(output_ty) } } |
