Skip to content

Commit 1fc2385

Browse files
Revert "Adapt ui-fulldeps test."
This reverts commit 69205db.
1 parent a317055 commit 1fc2385

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,10 @@ fn iter_exprs(depth: usize, f: &mut dyn FnMut(P<Expr>)) {
7373
2 => {
7474
let seg = PathSegment::from_ident(Ident::from_str("x"));
7575
iter_exprs(depth - 1, &mut |e| {
76-
g(ExprKind::MethodCall(seg.clone(), e, vec![make_x()], DUMMY_SP))
76+
g(ExprKind::MethodCall(seg.clone(), vec![e, make_x()], DUMMY_SP))
7777
});
7878
iter_exprs(depth - 1, &mut |e| {
79-
g(ExprKind::MethodCall(seg.clone(), make_x(), vec![e], DUMMY_SP))
79+
g(ExprKind::MethodCall(seg.clone(), vec![make_x(), e], DUMMY_SP))
8080
});
8181
}
8282
3..=8 => {

0 commit comments

Comments
 (0)