Skip to content

Commit c3131f2

Browse files
committed
Fix bug in PostExpansionVisitor
1 parent ef1b507 commit c3131f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libsyntax/feature_gate.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -981,7 +981,7 @@ impl<'a> Visitor for PostExpansionVisitor<'a> {
981981
ast::TyKind::Never => return,
982982
_ => (),
983983
};
984-
visit::walk_ty(self, output_ty)
984+
self.visit_ty(output_ty)
985985
}
986986
}
987987

0 commit comments

Comments
 (0)