Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit f69a2a6

Browse files
committed
Fix pprust-expr-roundtrip
1 parent 6e4d0b4 commit f69a2a6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/ui-fulldeps/pprust-expr-roundtrip.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@ fn iter_exprs(depth: usize, f: &mut dyn FnMut(P<Expr>)) {
8484
2 => {
8585
let seg = PathSegment::from_ident(Ident::from_str("x"));
8686
iter_exprs(depth - 1, &mut |e| g(ExprKind::MethodCall(
87-
seg.clone(), vec![e, make_x()])));
87+
seg.clone(), vec![e, make_x()], DUMMY_SP)));
8888
iter_exprs(depth - 1, &mut |e| g(ExprKind::MethodCall(
89-
seg.clone(), vec![make_x(), e])));
89+
seg.clone(), vec![make_x(), e], DUMMY_SP)));
9090
},
9191
3..=8 => {
9292
let op = Spanned {

0 commit comments

Comments
 (0)