nak: drop unnecessary reference on both sides of ==

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/38807>
This commit is contained in:
Eric Engestrom 2025-10-04 17:06:14 +02:00
parent e0c5b40561
commit 9f830f622f

View file

@ -308,7 +308,7 @@ fn test_ssa_ref_round_trip() {
.collect(); .collect();
let ssa_ref = SSARef::new(&vec); let ssa_ref = SSARef::new(&vec);
assert!(&ssa_ref[..] == &vec[..]); assert!(ssa_ref[..] == vec[..]);
} }
} }