Adjust macro hygiene test formatting

Different versions of rustfmt mangle this all different ways.
This commit is contained in:
David Tolnay 2021-05-22 14:28:07 -07:00
parent c610d97267
commit ee2a47d3af
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -60,4 +60,8 @@ macro_rules! error_from_macro {
}
// Test that we generate impls with the proper hygiene
error_from_macro!(#[error("Something")] Variant(#[from] io::Error));
#[rustfmt::skip]
error_from_macro! {
#[error("Something")]
Variant(#[from] io::Error)
}