commit | 640832aa1ceaa445bf6f74b6e2a10f7e2039dc20 | [log] [tgz] |
---|---|---|
author | Nika Layzell <nika@thelayzells.com> | Mon Dec 04 13:37:09 2017 -0500 |
committer | Nika Layzell <nika@thelayzells.com> | Mon Dec 04 13:37:09 2017 -0500 |
tree | d82de6200db7f28e933b7125754b2700f3db6134 | |
parent | 302afd282be33c1ba753d9a43672c6144b30f857 [diff] [blame] |
Separate unsafe blocks into a ExprKind variant
diff --git a/tests/test_precedence.rs b/tests/test_precedence.rs index bbc6023..171bf4b 100644 --- a/tests/test_precedence.rs +++ b/tests/test_precedence.rs
@@ -322,6 +322,7 @@ ExprKind::Group(_) => unreachable!(), ExprKind::Paren(p) => paren(self, p.expr.node), ExprKind::If(..) | + ExprKind::Unsafe(..) | ExprKind::Block(..) | ExprKind::IfLet(..) => { return fold_expr(self, expr);