You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
rustfmt does not change trailing commas in debug_assert invocations, and both of the following are left unchanged:
debug_assert(a == b,);debug_assert(a == b);
While obviously macros should be handled with care, rustfmt should be able to handle at least common function-like ones as if they were functions, I think.