Skip try blocks in bracket fold
diff --git a/tests/test_precedence.rs b/tests/test_precedence.rs
index dd8edea..b272d49 100644
--- a/tests/test_precedence.rs
+++ b/tests/test_precedence.rs
@@ -234,6 +234,12 @@
                     span: DUMMY_SP,
                     attrs: ThinVec::new(),
                 },
+                ExprKind::TryBlock(_) => Expr {
+                    id: ast::DUMMY_NODE_ID,
+                    node: ExprKind::Paren(P(e)),
+                    span: DUMMY_SP,
+                    attrs: ThinVec::new(),
+                },
                 ExprKind::If(..) | ExprKind::Block(..) | ExprKind::IfLet(..) => {
                     fold::noop_fold_expr(e, self)
                 }