]> git.proxmox.com Git - cargo.git/blobdiff - vendor/syn/tests/test_visibility.rs
New upstream version 0.52.0
[cargo.git] / vendor / syn / tests / test_visibility.rs
index c3d0ac7a5b7d27af5f11928df77ee019cd585e15..7b2c00ba34d8d846bdb138894c7dbdef99e03f84 100644 (file)
@@ -92,7 +92,10 @@ fn test_missing_in_path() {
 
 #[test]
 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]