Format with rustfmt 1.4.30-nightly

This commit is contained in:
David Tolnay 2021-01-01 00:40:40 -08:00
parent 9203f69d7a
commit 875eb74f8c
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82

View File

@ -92,7 +92,10 @@ fn test_missing_in_path() {
#[test] #[test]
fn test_crate_path() { fn test_crate_path() {
assert_vis_parse!("pub(crate::A, crate::B)", Ok(Visibility::Public(_)) + "(crate::A, crate::B)"); assert_vis_parse!(
"pub(crate::A, crate::B)",
Ok(Visibility::Public(_)) + "(crate::A, crate::B)"
);
} }
#[test] #[test]