Merge pull request #10635 from mcy/retrigger-kokoro

Unbreak Windows tests
diff --git a/src/google/protobuf/descriptor.cc b/src/google/protobuf/descriptor.cc
index dfe89c7..3a089e3 100644
--- a/src/google/protobuf/descriptor.cc
+++ b/src/google/protobuf/descriptor.cc
@@ -5553,7 +5553,7 @@
     absl::string_view existing_type = match.is_custom ? "custom" : "default";
     // If the matched name differs (which it can only differ in case), include
     // it in the error message, for maximum clarity to user.
-    absl::string_view name_suffix = "";
+    std::string name_suffix;
     if (details.orig_name != match.orig_name) {
       name_suffix = absl::StrCat(" (\"", match.orig_name, "\")");
     }