PR 77264 constrain new std::basic_string overloads
authorJonathan Wakely <jwakely@redhat.com>
Wed, 17 Aug 2016 13:38:52 +0000 (14:38 +0100)
committerJonathan Wakely <redi@gcc.gnu.org>
Wed, 17 Aug 2016 13:38:52 +0000 (14:38 +0100)
PR libstdc++/77264
* include/bits/basic_string.h (operator=(__sv_type)
(append(__sv_type), assign(__sv_type), insert(size_type, __sv_type))
(replace(size_type, size_type, __sv_type))
(replace(const_iterator, const_iterator, __sv_type))
(find(__sv_type, size_type), rfind(__sv_type, size_type))
(compare(size_type, size_type, __sv_type)): Reformat.
(_If_sv): Define helper for SFINAE constaints.
(append(const _Tp&, size_type, size_type))
(assign(const _Tp&, size_type, size_type))
(insert(size_type, const _Tp&, size_type, size_type))
(replace(size_type, size_type, const _Tp&, size_type, size_type)):
Use _If_sv.
* testsuite/21_strings/basic_string/modifiers/append/char/4.cc: Test
SFINAE constraints.
* testsuite/21_strings/basic_string/modifiers/append/wchar_t/4.cc:
Likewise.
* testsuite/21_strings/basic_string/modifiers/replace/char/7.cc:
Likewise.
* testsuite/21_strings/basic_string/modifiers/replace/wchar_t/7.cc:
Likewise.
* testsuite/21_strings/basic_string/modifiers/assign/char/4.cc:
Likewise.
* testsuite/21_strings/basic_string/modifiers/assign/wchar_t/4.cc:
Likewise.
* testsuite/21_strings/basic_string/modifiers/insert/char/3.cc:
Likewise.
* testsuite/21_strings/basic_string/modifiers/insert/wchar_t/3.cc:
Likewise.
* testsuite/21_strings/basic_string/modifiers/replace/char/7.cc:
Likewise.
* testsuite/21_strings/basic_string/operations/compare/char/2.cc:
Likewise.
* testsuite/21_strings/basic_string/operations/compare/wchar_t/2.cc:
Likewise.

From-SVN: r239532

12 files changed:
libstdc++-v3/ChangeLog
libstdc++-v3/include/bits/basic_string.h
libstdc++-v3/testsuite/21_strings/basic_string/modifiers/append/char/4.cc
libstdc++-v3/testsuite/21_strings/basic_string/modifiers/append/wchar_t/4.cc
libstdc++-v3/testsuite/21_strings/basic_string/modifiers/assign/char/4.cc
libstdc++-v3/testsuite/21_strings/basic_string/modifiers/assign/wchar_t/4.cc
libstdc++-v3/testsuite/21_strings/basic_string/modifiers/insert/char/3.cc
libstdc++-v3/testsuite/21_strings/basic_string/modifiers/insert/wchar_t/3.cc
libstdc++-v3/testsuite/21_strings/basic_string/modifiers/replace/char/7.cc
libstdc++-v3/testsuite/21_strings/basic_string/modifiers/replace/wchar_t/7.cc
libstdc++-v3/testsuite/21_strings/basic_string/operations/compare/char/2.cc
libstdc++-v3/testsuite/21_strings/basic_string/operations/compare/wchar_t/2.cc

index a7689f451f50502eacf60b5e2b3b2d91f97eb581..bbf2b19665d988235723f6a994746f22423af557 100644 (file)
@@ -1,3 +1,41 @@
+2016-08-17  Jonathan Wakely  <jwakely@redhat.com>
+
+       PR libstdc++/77264
+       * include/bits/basic_string.h (operator=(__sv_type)
+       (append(__sv_type), assign(__sv_type), insert(size_type, __sv_type))
+       (replace(size_type, size_type, __sv_type))
+       (replace(const_iterator, const_iterator, __sv_type))
+       (find(__sv_type, size_type), rfind(__sv_type, size_type))
+       (compare(size_type, size_type, __sv_type)): Reformat.
+       (_If_sv): Define helper for SFINAE constaints.
+       (append(const _Tp&, size_type, size_type))
+       (assign(const _Tp&, size_type, size_type))
+       (insert(size_type, const _Tp&, size_type, size_type))
+       (replace(size_type, size_type, const _Tp&, size_type, size_type)):
+       Use _If_sv.
+       * testsuite/21_strings/basic_string/modifiers/append/char/4.cc: Test
+       SFINAE constraints.
+       * testsuite/21_strings/basic_string/modifiers/append/wchar_t/4.cc:
+       Likewise.
+       * testsuite/21_strings/basic_string/modifiers/replace/char/7.cc:
+       Likewise.
+       * testsuite/21_strings/basic_string/modifiers/replace/wchar_t/7.cc:
+       Likewise.
+       * testsuite/21_strings/basic_string/modifiers/assign/char/4.cc:
+       Likewise.
+       * testsuite/21_strings/basic_string/modifiers/assign/wchar_t/4.cc:
+       Likewise.
+       * testsuite/21_strings/basic_string/modifiers/insert/char/3.cc:
+       Likewise.
+       * testsuite/21_strings/basic_string/modifiers/insert/wchar_t/3.cc:
+       Likewise.
+       * testsuite/21_strings/basic_string/modifiers/replace/char/7.cc:
+       Likewise.
+       * testsuite/21_strings/basic_string/operations/compare/char/2.cc:
+       Likewise.
+       * testsuite/21_strings/basic_string/operations/compare/wchar_t/2.cc:
+       Likewise.
+
 2016-08-16  Jonathan Wakely  <jwakely@redhat.com>
 
        PR libstdc++/72847
index 89e210062f609fc8bfb47a359efe4561674b2b8a..68cfc994de0cf9693e2fbb285e1ce0802559094f 100644 (file)
@@ -709,7 +709,8 @@ _GLIBCXX_BEGIN_NAMESPACE_CXX11
        *  @brief  Set value to string constructed from a string_view.
        *  @param  __sv  A string_view.
        */
-      basic_string& operator=(__sv_type __sv)
+      basic_string&
+      operator=(__sv_type __sv)
       {        return this->assign(__sv); }
 
       /**
@@ -1217,9 +1218,16 @@ _GLIBCXX_BEGIN_NAMESPACE_CXX11
        *  @param __sv  The string_view to be appended.
        *  @return  Reference to this string.
        */
-      basic_string& append(__sv_type __sv)
+      basic_string&
+      append(__sv_type __sv)
       { return this->append(__sv.data(), __sv.size()); }
 
+      template<typename _Tp, typename _Res>
+       using _If_sv = enable_if_t<
+         __and_<is_convertible<const _Tp&, __sv_type>,
+                __not_<is_convertible<const _Tp&, const _CharT*>>>::value,
+         _Res>;
+
       /**
        *  @brief  Append a range of characters from a string_view.
        *  @param __sv  The string_view to be appended from.
@@ -1227,17 +1235,15 @@ _GLIBCXX_BEGIN_NAMESPACE_CXX11
        *  @param __n   The number of characters to append from the string_view.
        *  @return  Reference to this string.
        */
-      template <typename _Tp,
-               enable_if_t<is_convertible_v<const _Tp&, __sv_type>,
-                           bool> = true>
-      basic_string& append(const _Tp& __svt,
-                          size_type __pos, size_type __n = npos)
-      {
-       __sv_type __sv = __svt;
-       return _M_append(__sv.data()
-                        + __sv._M_check(__pos, "basic_string::append"),
-                        __sv._M_limit(__pos, __n));
-      }
+      template <typename _Tp>
+       _If_sv<_Tp, basic_string&>
+       append(const _Tp& __svt, size_type __pos, size_type __n = npos)
+       {
+         __sv_type __sv = __svt;
+         return _M_append(__sv.data()
+                          + __sv._M_check(__pos, "basic_string::append"),
+                          __sv._M_limit(__pos, __n));
+       }
 #endif // C++17
 
       /**
@@ -1386,7 +1392,8 @@ _GLIBCXX_BEGIN_NAMESPACE_CXX11
        *  @param __sv  The source string_view.
        *  @return  Reference to this string.
        */
-      basic_string& assign(__sv_type __sv)
+      basic_string&
+      assign(__sv_type __sv)
       {        return this->assign(__sv.data(), __sv.size()); }
 
       /**
@@ -1396,18 +1403,15 @@ _GLIBCXX_BEGIN_NAMESPACE_CXX11
        *  @param __n  The number of characters to assign.
        *  @return  Reference to this string.
        */
-      template <typename _Tp,
-               enable_if_t<is_convertible_v<const _Tp&, __sv_type>,
-                           bool> = true>
-      basic_string&
-      assign(const _Tp& __svt,
-            size_type __pos, size_type __n = npos)
-      {
-       __sv_type __sv = __svt;
-       return _M_replace(size_type(0), this->size(), __sv.data()
-                         + __sv._M_check(__pos, "basic_string::assign"),
-                         __sv._M_limit(__pos, __n));
-      }
+      template <typename _Tp>
+       _If_sv<_Tp, basic_string&>
+       assign(const _Tp& __svt, size_type __pos, size_type __n = npos)
+       {
+         __sv_type __sv = __svt;
+         return _M_replace(size_type(0), this->size(), __sv.data()
+                           + __sv._M_check(__pos, "basic_string::assign"),
+                           __sv._M_limit(__pos, __n));
+       }
 #endif // C++17
 
 #if __cplusplus >= 201103L
@@ -1647,8 +1651,8 @@ _GLIBCXX_BEGIN_NAMESPACE_CXX11
        *  @param __sv   The string_view to insert.
        *  @return  Reference to this string.
       */
-      basic_string& insert(size_type __pos,
-                          __sv_type __sv)
+      basic_string&
+      insert(size_type __pos, __sv_type __sv)
       {        return this->insert(__pos, __sv.data(), __sv.size()); }
 
       /**
@@ -1660,17 +1664,16 @@ _GLIBCXX_BEGIN_NAMESPACE_CXX11
        *  @param __n    The number of characters to insert.
        *  @return  Reference to this string.
       */
-      template <typename _Tp,
-               enable_if_t<is_convertible_v<const _Tp&, __sv_type>,
-                           bool> = true>
-      basic_string& insert(size_type __pos1, const _Tp& __svt,
-                          size_type __pos2, size_type __n = npos)
-      {
-       __sv_type __sv = __svt;
-       return this->replace(__pos1, size_type(0), __sv.data()
-                            + __sv._M_check(__pos2, "basic_string::insert"),
-                            __sv._M_limit(__pos2, __n));
-      }
+      template <typename _Tp>
+       _If_sv<_Tp, basic_string&>
+       insert(size_type __pos1, const _Tp& __svt,
+              size_type __pos2, size_type __n = npos)
+       {
+         __sv_type __sv = __svt;
+         return this->replace(__pos1, size_type(0), __sv.data()
+                              + __sv._M_check(__pos2, "basic_string::insert"),
+                              __sv._M_limit(__pos2, __n));
+       }
 #endif // C++17
 
       /**
@@ -2070,8 +2073,8 @@ _GLIBCXX_BEGIN_NAMESPACE_CXX11
        *  @param __sv  The string_view to insert.
        *  @return  Reference to this string.
       */
-      basic_string& replace(size_type __pos, size_type __n,
-                           __sv_type __sv)
+      basic_string&
+      replace(size_type __pos, size_type __n, __sv_type __sv)
       {        return this->replace(__pos, __n, __sv.data(), __sv.size()); }
 
       /**
@@ -2083,18 +2086,16 @@ _GLIBCXX_BEGIN_NAMESPACE_CXX11
        *  @param __n2    The number of characters to insert.
        *  @return  Reference to this string.
       */
-      template <typename _Tp,
-               enable_if_t<is_convertible_v<const _Tp&, __sv_type>,
-                           bool> = true>
-      basic_string& replace(size_type __pos1, size_type __n1,
-                           const _Tp& __svt,
-                           size_type __pos2, size_type __n2 = npos)
-      {
-       __sv_type __sv = __svt;
-       return this->replace(__pos1, __n1, __sv.data()
-                            + __sv._M_check(__pos2, "basic_string::replace"),
-                            __sv._M_limit(__pos2, __n2));
-      }
+      template <typename _Tp>
+       _If_sv<_Tp, basic_string&>
+       replace(size_type __pos1, size_type __n1, const _Tp& __svt,
+               size_type __pos2, size_type __n2 = npos)
+       {
+         __sv_type __sv = __svt;
+         return this->replace(__pos1, __n1, __sv.data()
+                              + __sv._M_check(__pos2, "basic_string::replace"),
+                              __sv._M_limit(__pos2, __n2));
+       }
 
       /**
        *  @brief  Replace range of characters with string_view.
@@ -2105,8 +2106,8 @@ _GLIBCXX_BEGIN_NAMESPACE_CXX11
        *  @param __sv    The string_view to insert from.
        *  @return  Reference to this string.
       */
-      basic_string& replace(const_iterator __i1, const_iterator __i2,
-                           __sv_type __sv)
+      basic_string&
+      replace(const_iterator __i1, const_iterator __i2, __sv_type __sv)
       {        return this->replace(__i1 - begin(), __i2 - __i1, __sv); }
 #endif // C++17
 
@@ -2241,8 +2242,7 @@ _GLIBCXX_BEGIN_NAMESPACE_CXX11
        *  @return  Index of start of first occurrence.
       */
       size_type
-      find(__sv_type __sv,
-           size_type __pos = 0) const noexcept
+      find(__sv_type __sv, size_type __pos = 0) const noexcept
       {        return this->find(__sv.data(), __pos, __sv.size()); }
 #endif // C++17
 
@@ -2299,8 +2299,7 @@ _GLIBCXX_BEGIN_NAMESPACE_CXX11
        *  @return  Index of start of last occurrence.
       */
       size_type
-      rfind (__sv_type __sv,
-            size_type __pos = npos) const noexcept
+      rfind(__sv_type __sv, size_type __pos = npos) const noexcept
       {        return this->rfind(__sv.data(), __pos, __sv.size()); }
 #endif // C++17
 
@@ -2721,11 +2720,8 @@ _GLIBCXX_BEGIN_NAMESPACE_CXX11
        *  @return  Integer < 0, 0, or > 0.
        */
       int
-      compare(size_type __pos, size_type __n,
-             __sv_type __sv) const
-      {
-       return __sv_type(*this).substr(__pos, __n).compare(__sv);
-      }
+      compare(size_type __pos, size_type __n, __sv_type __sv) const
+      { return __sv_type(*this).substr(__pos, __n).compare(__sv); }
 
       /**
        *  @brief  Compare to a string_view.
@@ -2736,17 +2732,15 @@ _GLIBCXX_BEGIN_NAMESPACE_CXX11
        *  @param __n2  The number of characters to compare.
        *  @return  Integer < 0, 0, or > 0.
        */
-      template <typename _Tp,
-               enable_if_t<is_convertible_v<const _Tp&, __sv_type>,
-                           bool> = true>
-      int compare(size_type __pos1, size_type __n1,
-                 const _Tp& __svt,
-                 size_type __pos2, size_type __n2 = npos) const
-      {
-       __sv_type __sv = __svt;
-       return __sv_type(*this)
-         .substr(__pos1, __n1).compare(__sv.substr(__pos2, __n2));
-      }
+      template <typename _Tp>
+       _If_sv<_Tp, int>
+       compare(size_type __pos1, size_type __n1, const _Tp& __svt,
+               size_type __pos2, size_type __n2 = npos) const
+       {
+         __sv_type __sv = __svt;
+         return __sv_type(*this)
+           .substr(__pos1, __n1).compare(__sv.substr(__pos2, __n2));
+       }
 #endif // C++17
 
       /**
index 2a94452a10aa0df6efdd6278ea6d5a0bf55980fe..0df4a6d0fd5ead418830ffcec16ef8750f8a5e22 100644 (file)
@@ -38,8 +38,38 @@ test03()
   VERIFY (str4 == "oo");
 }
 
+// PR libstdc++/77264
+void
+test04()
+{
+  bool test __attribute__((unused)) = true;
+
+  std::string str("a");
+  char c = 'b';
+  str.append(&c, 1);
+  VERIFY (str[1] == c);
+
+  char arr[] = "c";
+  str.append(arr, 1);
+  VERIFY (str[2] == arr[0]);
+
+  const char carr[] = "d";
+  str.append(carr, 1);
+  VERIFY (str[3] == carr[0]);
+
+  struct S {
+    operator char*() { return &c; }
+    operator std::string_view() { return "!"; }
+    char c = 'e';
+  };
+
+  str.append(S{}, 1);
+  VERIFY (str[4] == S{}.c);
+}
+
 int main()
 { 
   test03();
+  test04();
   return 0;
 }
index 5512f060383bdfa2f0f2a9449b3f44dd2700588e..dc1bd648d34201ad22ade5ff17ff72814a4db6da 100644 (file)
@@ -38,8 +38,39 @@ test03()
   VERIFY (str4 == L"oo");
 }
 
+// PR libstdc++/77264
+void
+test04()
+{
+  bool test __attribute__((unused)) = true;
+
+  std::wstring str(L"a");
+
+  wchar_t c = L'b';
+  str.append(&c, 1);
+  VERIFY (str[1] == c);
+
+  wchar_t arr[] = L"c";
+  str.append(arr, 1);
+  VERIFY (str[2] == arr[0]);
+
+  const wchar_t carr[] = L"d";
+  str.append(carr, 1);
+  VERIFY (str[3] == carr[0]);
+
+  struct S {
+    operator wchar_t*() { return &c; }
+    operator std::wstring_view() { return L"!"; }
+    wchar_t c = L'e';
+  };
+
+  str.append(S{}, 1);
+  VERIFY (str[4] == S{}.c);
+}
+
 int main()
 { 
   test03();
+  test04();
   return 0;
 }
index b8955b5cbf3235853d39545c077a3a40be46bb8e..201dee04eb64f0bb6716d57abd6cea2295c90077 100644 (file)
@@ -35,8 +35,38 @@ test03()
   VERIFY (str4 == "oo");
 }
 
+// PR libstdc++/77264
+void
+test04()
+{
+  bool test __attribute__((unused)) = true;
+
+  std::string str("a");
+  char c = 'b';
+  str.assign(&c, 1);
+  VERIFY (str[0] == c);
+
+  char arr[] = "c";
+  str.assign(arr, 1);
+  VERIFY (str[0] == arr[0]);
+
+  const char carr[] = "d";
+  str.assign(carr, 1);
+  VERIFY (str[0] == carr[0]);
+
+  struct S {
+    operator char*() { return &c; }
+    operator std::string_view() { return "!"; }
+    char c = 'e';
+  };
+
+  str.assign(S{}, 1);
+  VERIFY (str[0] == S{}.c);
+}
+
 int main()
 { 
   test03();
+  test04();
   return 0;
 }
index bde158fb97d3a3c36703a259185be998dd97f937..5fb7a64eef6632c306c33e148e3c43916c6e6a4d 100644 (file)
@@ -35,8 +35,39 @@ test03()
   VERIFY (str4 == L"oo");
 }
 
+// PR libstdc++/77264
+void
+test04()
+{
+  bool test __attribute__((unused)) = true;
+
+  std::wstring str(L"a");
+
+  wchar_t c = L'b';
+  str.assign(&c, 1);
+  VERIFY (str[0] == c);
+
+  wchar_t arr[] = L"c";
+  str.assign(arr, 1);
+  VERIFY (str[0] == arr[0]);
+
+  const wchar_t carr[] = L"d";
+  str.assign(carr, 1);
+  VERIFY (str[0] == carr[0]);
+
+  struct S {
+    operator wchar_t*() { return &c; }
+    operator std::wstring_view() { return L"!"; }
+    wchar_t c = L'e';
+  };
+
+  str.assign(S{}, 1);
+  VERIFY (str[0] == S{}.c);
+}
+
 int main()
 { 
   test03();
+  test04();
   return 0;
 }
index 71e5165e666676dd8b67737c727be218836a2340..7ebbb33fced67863050724220d913016bef0b6b0 100644 (file)
@@ -39,8 +39,38 @@ test03()
   VERIFY (str4 == "foooooo");
 }
 
+// PR libstdc++/77264
+void
+test04()
+{
+  bool test __attribute__((unused)) = true;
+
+  std::string str("a");
+  char c = 'b';
+  str.insert(0, &c, 1);
+  VERIFY (str[0] == c);
+
+  char arr[] = "c";
+  str.insert(0, arr, 1);
+  VERIFY (str[0] == arr[0]);
+
+  const char carr[] = "d";
+  str.insert(0, carr, 1);
+  VERIFY (str[0] == carr[0]);
+
+  struct S {
+    operator char*() { return &c; }
+    operator std::string_view() { return "!"; }
+    char c = 'e';
+  };
+
+  str.insert(0, S{}, 1);
+  VERIFY (str[0] == S{}.c);
+}
+
 int main()
 { 
   test03();
+  test04();
   return 0;
 }
index 6cddcbe9372d0b654bbfe8ae3c2afeec2b64c2e5..5d2587c8d002e3899eb1d8c5f156c1f8fa862256 100644 (file)
@@ -39,8 +39,39 @@ test03()
   VERIFY (str4 == L"foooooo");
 }
 
+// PR libstdc++/77264
+void
+test04()
+{
+  bool test __attribute__((unused)) = true;
+
+  std::wstring str(L"a");
+
+  wchar_t c = L'b';
+  str.insert(0, &c, 1);
+  VERIFY (str[0] == c);
+
+  wchar_t arr[] = L"c";
+  str.insert(0, arr, 1);
+  VERIFY (str[0] == arr[0]);
+
+  const wchar_t carr[] = L"d";
+  str.insert(0, carr, 1);
+  VERIFY (str[0] == carr[0]);
+
+  struct S {
+    operator wchar_t*() { return &c; }
+    operator std::wstring_view() { return L"!"; }
+    wchar_t c = L'e';
+  };
+
+  str.insert(0, S{}, 1);
+  VERIFY (str[0] == S{}.c);
+}
+
 int main()
 { 
   test03();
+  test04();
   return 0;
 }
index 004b2358b3c00153fa243bbe360c3d809a19803a..afefa84fc5d5221ee40f06395432bbf5e4068150 100644 (file)
@@ -47,8 +47,38 @@ test03()
   VERIFY (str2 == "foofoo");
 }
 
+// PR libstdc++/77264
+void
+test04()
+{
+  bool test __attribute__((unused)) = true;
+
+  std::string str("a");
+  char c = 'b';
+  str.replace(0, 1, &c, 1);
+  VERIFY (str[0] == c);
+
+  char arr[] = "c";
+  str.replace(0, 1, arr, 1);
+  VERIFY (str[0] == arr[0]);
+
+  const char carr[] = "d";
+  str.replace(0, 1, carr, 1);
+  VERIFY (str[0] == carr[0]);
+
+  struct S {
+    operator char*() { return &c; }
+    operator std::string_view() { return "!"; }
+    char c = 'e';
+  };
+
+  str.replace(0, 1, S{}, 1);
+  VERIFY (str[0] == S{}.c);
+}
+
 int main()
 { 
   test03();
+  test04();
   return 0;
 }
index 88d2666da00fb9f51c20bef8b25e9475c1b58263..692c52ddcb235b9dd96dfc210dee8844841aea7b 100644 (file)
@@ -47,8 +47,39 @@ test03()
   VERIFY (str2 == L"foofoo");
 }
 
+// PR libstdc++/77264
+void
+test04()
+{
+  bool test __attribute__((unused)) = true;
+
+  std::wstring str(L"a");
+
+  wchar_t c = L'b';
+  str.replace(0, 1, &c, 1);
+  VERIFY (str[0] == c);
+
+  wchar_t arr[] = L"c";
+  str.replace(0, 1, arr, 1);
+  VERIFY (str[0] == arr[0]);
+
+  const wchar_t carr[] = L"d";
+  str.replace(0, 1, carr, 1);
+  VERIFY (str[0] == carr[0]);
+
+  struct S {
+    operator wchar_t*() { return &c; }
+    operator std::wstring_view() { return L"!"; }
+    wchar_t c = L'e';
+  };
+
+  str.replace(0, 1, S{}, 1);
+  VERIFY (str[0] == S{}.c);
+}
+
 int main()
 { 
   test03();
+  test04();
   return 0;
 }
index 65474d0e50e8441ca14946c21728fb4dddfc5b4e..08b3f0c378b25d7b0d2e5707c544bd16ecd9af67 100644 (file)
@@ -49,8 +49,38 @@ test03()
   VERIFY (x == 0);
 }
 
+// PR libstdc++/77264
+void
+test04()
+{
+  bool test __attribute__((unused)) = true;
+
+  const std::string str("a");
+  char c = 'a';
+  int res = str.compare(0, 1, &c, 1);
+  VERIFY ( !res );
+
+  char arr[] = "a";
+  res = str.compare(0, 1, arr, 1);
+  VERIFY ( !res );
+
+  const char carr[] = "a";
+  res = str.compare(0, 1, carr, 1);
+  VERIFY ( !res );
+
+  struct S {
+    operator char*() { return &c; }
+    operator std::string_view() { return "!"; }
+    char c = 'a';
+  };
+
+  res = str.compare(0, 1, S{}, 1);
+  VERIFY ( !res );
+}
+
 int main()
 { 
   test03();
+  test04();
   return 0;
 }
index f7a976070bfb3d5029a16e15ee92972717900fbd..d79dcd59a87817e68d81aa43eb05e0897c660600 100644 (file)
@@ -49,8 +49,39 @@ test03()
   VERIFY (x == 0);
 }
 
+// PR libstdc++/77264
+void
+test04()
+{
+  bool test __attribute__((unused)) = true;
+
+  const std::wstring str(L"a");
+
+  wchar_t c = L'a';
+  int res = str.compare(0, 1, &c, 1);
+  VERIFY ( !res );
+
+  wchar_t arr[] = L"a";
+  res = str.compare(0, 1, arr, 1);
+  VERIFY ( !res );
+
+  const wchar_t carr[] = L"a";
+  res = str.compare(0, 1, carr, 1);
+  VERIFY ( !res );
+
+  struct S {
+    operator wchar_t*() { return &c; }
+    operator std::wstring_view() { return L"!"; }
+    wchar_t c = L'a';
+  };
+
+  res = str.compare(0, 1, S{}, 1);
+  VERIFY ( !res );
+}
+
 int main()
 { 
   test03();
+  test04();
   return 0;
 }