fix fallout from libsyntax enumpocalypse

This commit is contained in:
Alex Burka 2016-02-11 12:52:39 -05:00
parent 7eb7c56bd4
commit 1ec3005e45
3 changed files with 3 additions and 3 deletions

View file

@ -2056,7 +2056,7 @@ impl<'a> Parser<'a> {
start: Option<P<Expr>>,
end: Option<P<Expr>>,
limits: RangeLimits)
-> ast::Expr_ {
-> ast::ExprKind {
ExprKind::Range(start, end, limits)
}