suppress "uninitialized" warning for msan_fuzz_test (#27)

suppress "uninitialized" warning for msan_fuzz_test
diff --git a/examples/BUILD b/examples/BUILD
index 8805062..568afa4 100644
--- a/examples/BUILD
+++ b/examples/BUILD
@@ -38,9 +38,11 @@
     srcs = ["hang_fuzz_test.cc"],
 )
 
+# This test is designed to trigger an uninitialized memory issue
 cc_fuzz_test(
     name = "msan_fuzz_test",
     srcs = ["msan_fuzz_test.cc"],
+    copts = ["-Wno-uninitialized"],
 )
 
 cc_fuzz_test(