Swift 6.3 failing on simple #expect

#expect(min(4*7*19, 27*25) == 1) fails with “The compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions”

The expansion is:

Testing.__checkBinaryOperation(min(4*7*19, 27*25),{ $0 == $1() },1,expression: .__fromBinaryOperation(.__fromSyntaxNode("min(4*7*19, 27*25)"),"==",.__fromSyntaxNode("1")),comments: [],isRequired: false,sourceLocation: Testing.SourceLocation.__here()).__expected()

(My test case is another similar simple function, but I was able to reproduce using min. This #expect has been in the code for 6 months and just started failing under 6.3.)