Internal change

PiperOrigin-RevId: 545191429
Change-Id: Ifbc04654df731a9fab0e3253b7afa8b161c0ae14
diff --git a/common/item_exists_test.rs b/common/item_exists_test.rs
index b4102ec..bcc33e5 100644
--- a/common/item_exists_test.rs
+++ b/common/item_exists_test.rs
@@ -140,8 +140,8 @@
         mod m {
             pub struct A;
         }
-        item_exists::type_exists!(m::A);
-        item_exists::type_exists!(m::A);
+        _ = item_exists::type_exists!(m::A);
+        _ = item_exists::type_exists!(m::A);
     }
 }