e343521276
Allows for this form of assert_eq! macros: ```rust assert_eq!( left.id, right.id, "IDs are not equal: {:?} {:?}", left, right ); ``` Also allows for assert! macros to have the format arguments split across multiple lines even if the assert condition is not simple: ```rust assert!( result >= 42, "The result must be at least 42: {:?}", result, result.code, context ); ```