Skip to content

Commit

Permalink
Update test suite to nightly-2024-12-04
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Dec 4, 2024
1 parent 7f12e32 commit 91ffc5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/common/eq.rs
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@ spanless_eq_enum!(AngleBracketedArg; Arg(0) Constraint(0));
spanless_eq_enum!(AsmMacro; Asm GlobalAsm NakedAsm);
spanless_eq_enum!(AssocItemConstraintKind; Equality(term) Bound(bounds));
spanless_eq_enum!(AssocItemKind; Const(0) Fn(0) Type(0) MacCall(0) Delegation(0) DelegationMac(0));
spanless_eq_enum!(AttrArgs; Empty Delimited(0) Eq(0 1));
spanless_eq_enum!(AttrArgs; Empty Delimited(0) Eq(eq_span value));
spanless_eq_enum!(AttrArgsEq; Ast(0) Hir(0));
spanless_eq_enum!(AttrStyle; Outer Inner);
spanless_eq_enum!(AttrTokenTree; Token(0 1) Delimited(0 1 2 3) AttrsTarget(0));
Expand Down Expand Up @@ -898,7 +898,7 @@ impl SpanlessEq for AttrKind {
SpanlessEq::eq(&path, &normal2.item.path)
&& match &normal2.item.args {
AttrArgs::Empty | AttrArgs::Delimited(_) => false,
AttrArgs::Eq(_span, value) => {
AttrArgs::Eq { eq_span: _, value } => {
is_escaped_literal_attr_args(value, *unescaped)
}
}
Expand Down

0 comments on commit 91ffc5c

Please sign in to comment.