public inbox for libstdc++-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc(refs/users/kmatsui/heads/is_integral)] WIP: is_integral
@ 2023-07-10  0:18 Ken Matsui
  0 siblings, 0 replies; only message in thread
From: Ken Matsui @ 2023-07-10  0:18 UTC (permalink / raw)
  To: gcc-cvs, libstdc++-cvs

https://gcc.gnu.org/g:220124a8a5198e5bfdefd060cbd6116816f6ff01

commit 220124a8a5198e5bfdefd060cbd6116816f6ff01
Author: Ken Matsui <kmatsui@gcc.gnu.org>
Date:   Sun Jul 9 17:17:26 2023 -0700

    WIP: is_integral

Diff:
---
 gcc/cp/constraint.cc                     |     3 +
 gcc/cp/cp-trait.def                      |     1 +
 gcc/cp/semantics.cc                      |     4 +
 gcc/testsuite/g++.dg/ext/has-builtin-1.C |     3 +
 gcc/testsuite/g++.dg/ext/is_integral.C   |    51 +
 libstdc++-v3/include/std/type_traits     |    15 +
 test_result.txt                          | 81400 ++++++++++++++++++++++++++++
 test_result2.txt                         | 81451 ++++++++++++++++++++++++++++
 test_result3.txt                         | 81797 +++++++++++++++++++++++++++++
 9 files changed, 244725 insertions(+)

diff --git a/gcc/cp/constraint.cc b/gcc/cp/constraint.cc
index 8cf0f2d0974..ad2fa7da6d6 100644
--- a/gcc/cp/constraint.cc
+++ b/gcc/cp/constraint.cc
@@ -3751,6 +3751,9 @@ diagnose_trait_expr (tree expr, tree args)
     case CPTK_IS_UNION:
       inform (loc, "  %qT is not a union", t1);
       break;
+    case CPTK_IS_INTEGRAL:
+      inform (loc, "  %qT is not an integral type", t1);
+      break;
     case CPTK_IS_AGGREGATE:
       inform (loc, "  %qT is not an aggregate", t1);
       break;
diff --git a/gcc/cp/cp-trait.def b/gcc/cp/cp-trait.def
index 8b7fece0cc8..ad528e7611b 100644
--- a/gcc/cp/cp-trait.def
+++ b/gcc/cp/cp-trait.def
@@ -82,6 +82,7 @@ DEFTRAIT_EXPR (IS_TRIVIALLY_ASSIGNABLE, "__is_trivially_assignable", 2)
 DEFTRAIT_EXPR (IS_TRIVIALLY_CONSTRUCTIBLE, "__is_trivially_constructible", -1)
 DEFTRAIT_EXPR (IS_TRIVIALLY_COPYABLE, "__is_trivially_copyable", 1)
 DEFTRAIT_EXPR (IS_UNION, "__is_union", 1)
+DEFTRAIT_EXPR (IS_INTEGRAL, "__is_integral", 1)
 DEFTRAIT_EXPR (REF_CONSTRUCTS_FROM_TEMPORARY, "__reference_constructs_from_temporary", 2)
 DEFTRAIT_EXPR (REF_CONVERTS_FROM_TEMPORARY, "__reference_converts_from_temporary", 2)
 /* FIXME Added space to avoid direct usage in GCC 13.  */
diff --git a/gcc/cp/semantics.cc b/gcc/cp/semantics.cc
index 8fb47fd179e..1f47df91fd5 100644
--- a/gcc/cp/semantics.cc
+++ b/gcc/cp/semantics.cc
@@ -12118,6 +12118,9 @@ trait_expr_value (cp_trait_kind kind, tree type1, tree type2)
     case CPTK_IS_UNION:
       return type_code1 == UNION_TYPE;
 
+    case CPTK_IS_INTEGRAL:
+      return CP_INTEGRAL_TYPE_P (type1);
+
     case CPTK_IS_ASSIGNABLE:
       return is_xible (MODIFY_EXPR, type1, type2);
 
@@ -12296,6 +12299,7 @@ finish_trait_expr (location_t loc, cp_trait_kind kind, tree type1, tree type2)
     case CPTK_IS_ENUM:
     case CPTK_IS_UNION:
     case CPTK_IS_SAME:
+    case CPTK_IS_INTEGRAL:
       break;
 
     case CPTK_IS_LAYOUT_COMPATIBLE:
diff --git a/gcc/testsuite/g++.dg/ext/has-builtin-1.C b/gcc/testsuite/g++.dg/ext/has-builtin-1.C
index f343e153e56..df5fcc76179 100644
--- a/gcc/testsuite/g++.dg/ext/has-builtin-1.C
+++ b/gcc/testsuite/g++.dg/ext/has-builtin-1.C
@@ -146,3 +146,6 @@
 #if !__has_builtin (__remove_cvref)
 # error "__has_builtin (__remove_cvref) failed"
 #endif
+#if !__has_builtin (__is_integral)
+# error "__has_builtin (__is_integral) failed"
+#endif
diff --git a/gcc/testsuite/g++.dg/ext/is_integral.C b/gcc/testsuite/g++.dg/ext/is_integral.C
new file mode 100644
index 00000000000..2a59fb5f120
--- /dev/null
+++ b/gcc/testsuite/g++.dg/ext/is_integral.C
@@ -0,0 +1,51 @@
+// { dg-do compile { target c++11 } }
+
+#include <testsuite_tr1.h>
+
+using namespace __gnu_test;
+
+#define SA(X) static_assert((X),#X)
+#define SA_TEST_CATEGORY(TRAIT, TYPE, EXPECT)	\
+  SA(TRAIT(TYPE) == EXPECT);					\
+  SA(TRAIT(const TYPE) == EXPECT);				\
+  SA(TRAIT(volatile TYPE) == EXPECT);			\
+  SA(TRAIT(const volatile TYPE) == EXPECT)
+
+SA_TEST_CATEGORY(__is_integral, void, false);
+
+SA_TEST_CATEGORY(__is_integral, char, true);
+SA_TEST_CATEGORY(__is_integral, signed char, true);
+SA_TEST_CATEGORY(__is_integral, unsigned char, true);
+SA_TEST_CATEGORY(__is_integral, wchar_t, true);
+#ifdef _GLIBCXX_USE_CHAR8_T
+SA_TEST_CATEGORY(__is_integral, char8_t, true);
+#endif
+SA_TEST_CATEGORY(__is_integral, char16_t, true);
+SA_TEST_CATEGORY(__is_integral, char32_t, true);
+SA_TEST_CATEGORY(__is_integral, short, true);
+SA_TEST_CATEGORY(__is_integral, unsigned short, true);
+SA_TEST_CATEGORY(__is_integral, int, true);
+SA_TEST_CATEGORY(__is_integral, unsigned int, true);
+SA_TEST_CATEGORY(__is_integral, long, true);
+SA_TEST_CATEGORY(__is_integral, unsigned long, true);
+SA_TEST_CATEGORY(__is_integral, long long, true);
+SA_TEST_CATEGORY(__is_integral, unsigned long long, true);
+
+SA_TEST_CATEGORY(__is_integral, float, false);
+SA_TEST_CATEGORY(__is_integral, double, false);
+SA_TEST_CATEGORY(__is_integral, long double, false);
+
+#ifndef __STRICT_ANSI__
+// GNU Extensions.
+#ifdef __SIZEOF_INT128__
+SA_TEST_CATEGORY(__is_integral, __int128, true);
+SA_TEST_CATEGORY(__is_integral, unsigned __int128, true);
+#endif
+
+#ifdef _GLIBCXX_USE_FLOAT128
+SA_TEST_CATEGORY(__is_integral, __float128, false);
+#endif
+#endif
+
+// Sanity check.
+SA_TEST_CATEGORY(__is_integral, ClassType, false);
diff --git a/libstdc++-v3/include/std/type_traits b/libstdc++-v3/include/std/type_traits
index 0e7a9c9c7f3..bd67016ad95 100644
--- a/libstdc++-v3/include/std/type_traits
+++ b/libstdc++-v3/include/std/type_traits
@@ -314,6 +314,13 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
     struct is_void<const volatile void>
     : public true_type { };
 
+#if __has_builtin(__is_integral)
+  /// is_integral
+  template<typename _Tp>
+    struct __is_integral_helper
+    : public __bool_constant<__is_integral(_Tp)>
+    { };
+#else
   /// @cond undocumented
   template<typename>
     struct __is_integral_helper
@@ -387,6 +394,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
   template<>
     struct __is_integral_helper<unsigned long long>
     : public true_type { };
+#endif
 
   // Conditionalizing on __STRICT_ANSI__ here will break any port that
   // uses one of these types for size_t.
@@ -3156,8 +3164,15 @@ template <typename _Tp>
   inline constexpr bool is_void_v = is_void<_Tp>::value;
 template <typename _Tp>
   inline constexpr bool is_null_pointer_v = is_null_pointer<_Tp>::value;
+
+#if __has_builtin(__is_integral)
+template <typename _Tp>
+  inline constexpr bool is_integral_v = __is_integral(_Tp);
+#else
 template <typename _Tp>
   inline constexpr bool is_integral_v = is_integral<_Tp>::value;
+#endif
+
 template <typename _Tp>
   inline constexpr bool is_floating_point_v = is_floating_point<_Tp>::value;
 
diff --git a/test_result.txt b/test_result.txt
new file mode 100644
index 00000000000..c0b6410afdc
--- /dev/null
+++ b/test_result.txt
@@ -0,0 +1,81400 @@
+make[1]: Entering directory '/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3'
+Making check in include
+make[2]: Entering directory '/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include'
+make[2]: Nothing to be done for 'check'.
+make[2]: Leaving directory '/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include'
+Making check in libsupc++
+make[2]: Entering directory '/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/libsupc++'
+make[2]: Nothing to be done for 'check'.
+make[2]: Leaving directory '/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/libsupc++'
+Making check in src
+make[2]: Entering directory '/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/src'
+Making check in c++98
+make[3]: Entering directory '/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/src/c++98'
+make[3]: Nothing to be done for 'check'.
+make[3]: Leaving directory '/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/src/c++98'
+Making check in c++11
+make[3]: Entering directory '/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/src/c++11'
+make[3]: Nothing to be done for 'check'.
+make[3]: Leaving directory '/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/src/c++11'
+Making check in c++17
+make[3]: Entering directory '/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/src/c++17'
+make[3]: Nothing to be done for 'check'.
+make[3]: Leaving directory '/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/src/c++17'
+Making check in c++20
+make[3]: Entering directory '/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/src/c++20'
+make[3]: Nothing to be done for 'check'.
+make[3]: Leaving directory '/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/src/c++20'
+Making check in filesystem
+make[3]: Entering directory '/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/src/filesystem'
+make[3]: Nothing to be done for 'check'.
+make[3]: Leaving directory '/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/src/filesystem'
+Making check in experimental
+make[3]: Entering directory '/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/src/experimental'
+make[3]: Nothing to be done for 'check'.
+make[3]: Leaving directory '/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/src/experimental'
+make[3]: Entering directory '/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/src'
+make[3]: Nothing to be done for 'check-am'.
+make[3]: Leaving directory '/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/src'
+make[2]: Leaving directory '/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/src'
+Making check in doc
+make[2]: Entering directory '/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/doc'
+make[2]: Nothing to be done for 'check'.
+make[2]: Leaving directory '/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/doc'
+Making check in po
+make[2]: Entering directory '/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/po'
+/bin/bash /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/../mkinstalldirs /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/po/share/locale
+catalogs='de.mo fr.mo'; \
+for cat in $catalogs; do \
+  cat=`basename $cat`; \
+  lang=`echo $cat | sed 's/\.mo$//'`; \
+  install_dir=/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/po/share/locale/$lang/LC_MESSAGES; \
+  /bin/bash /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/../mkinstalldirs $install_dir; \
+  /usr/bin/install -c -m 644 $cat $install_dir/libstdc++.mo; \
+done
+make[2]: Leaving directory '/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/po'
+Making check in testsuite
+make[2]: Entering directory '/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/testsuite'
+make  check-DEJAGNU
+make[3]: Entering directory '/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/testsuite'
+AR="ar"; export AR; \
+RANLIB="ranlib"; export RANLIB; \
+if [ -z "" ] && [ -n "-j8" ]; then \
+  rm -rf normal-parallel || true; \
+  mkdir normal-parallel; \
+  make  check-DEJAGNUnormal1 check-DEJAGNUnormal2 check-DEJAGNUnormal3 check-DEJAGNUnormal4 check-DEJAGNUnormal5 check-DEJAGNUnormal6 check-DEJAGNUnormal7 check-DEJAGNUnormal8 check-DEJAGNUnormal9 check-DEJAGNUnormal10 check-DEJAGNUnormal11 check-DEJAGNUnormal12 check-DEJAGNUnormal13 check-DEJAGNUnormal14 check-DEJAGNUnormal15 check-DEJAGNUnormal16 check-DEJAGNUnormal17 check-DEJAGNUnormal18 check-DEJAGNUnormal19 check-DEJAGNUnormal20 check-DEJAGNUnormal21 check-DEJAGNUnormal22 check-DEJAGNUnormal23 check-DEJAGNUnormal24 check-DEJAGNUnormal25 check-DEJAGNUnormal26 check-DEJAGNUnormal27 check-DEJAGNUnormal28 check-DEJAGNUnormal29 check-DEJAGNUnormal30 check-DEJAGNUnormal31 check-DEJAGNUnormal32 check-DEJAGNUnormal33 check-DEJAGNUnormal34 check-DEJAGNUnormal35 check-DEJAGNUnormal36 check-DEJAGNUnormal37 check-DEJAGNUnormal38 check-DEJAGNUnormal39 check-DEJAGNUnormal40 check-DEJAGNUnormal41 check-DEJAGNUnormal42 check-DEJAGNUnormal43 check-DEJAGNUnormal44 check-DEJAGNUnormal45 check-DEJAGNUnormal46 check-DEJAGNUnormal47 check-DEJAGNUnormal48 check-DEJAGNUnormal49 check-DEJAGNUnormal50 check-DEJAGNUnormal51 check-DEJAGNUnormal52 check-DEJAGNUnormal53 check-DEJAGNUnormal54 check-DEJAGNUnormal55 check-DEJAGNUnormal56 check-DEJAGNUnormal57 check-DEJAGNUnormal58 check-DEJAGNUnormal59 check-DEJAGNUnormal60 check-DEJAGNUnormal61 check-DEJAGNUnormal62 check-DEJAGNUnormal63 check-DEJAGNUnormal64 check-DEJAGNUnormal65 check-DEJAGNUnormal66 check-DEJAGNUnormal67 check-DEJAGNUnormal68 check-DEJAGNUnormal69 check-DEJAGNUnormal70 check-DEJAGNUnormal71 check-DEJAGNUnormal72 check-DEJAGNUnormal73 check-DEJAGNUnormal74 check-DEJAGNUnormal75 check-DEJAGNUnormal76 check-DEJAGNUnormal77 check-DEJAGNUnormal78 check-DEJAGNUnormal79 check-DEJAGNUnormal80 check-DEJAGNUnormal81 check-DEJAGNUnormal82 check-DEJAGNUnormal83 check-DEJAGNUnormal84 check-DEJAGNUnormal85 check-DEJAGNUnormal86 check-DEJAGNUnormal87 check-DEJAGNUnormal88 check-DEJAGNUnormal89 check-DEJAGNUnormal90 check-DEJAGNUnormal91 check-DEJAGNUnormal92 check-DEJAGNUnormal93 check-DEJAGNUnormal94 check-DEJAGNUnormal95 check-DEJAGNUnormal96 check-DEJAGNUnormal97 check-DEJAGNUnormal98 check-DEJAGNUnormal99 check-DEJAGNUnormal100 check-DEJAGNUnormal101 check-DEJAGNUnormal102 check-DEJAGNUnormal103 check-DEJAGNUnormal104 check-DEJAGNUnormal105 check-DEJAGNUnormal106 check-DEJAGNUnormal107 check-DEJAGNUnormal108 check-DEJAGNUnormal109 check-DEJAGNUnormal110 check-DEJAGNUnormal111 check-DEJAGNUnormal112 check-DEJAGNUnormal113 check-DEJAGNUnormal114 check-DEJAGNUnormal115 check-DEJAGNUnormal116 check-DEJAGNUnormal117 check-DEJAGNUnormal118 check-DEJAGNUnormal119 check-DEJAGNUnormal120 check-DEJAGNUnormal121 check-DEJAGNUnormal122 check-DEJAGNUnormal123 check-DEJAGNUnormal124 check-DEJAGNUnormal125 check-DEJAGNUnormal126 check-DEJAGNUnormal127 check-DEJAGNUnormal128; \
+  rm -rf normal-parallel || true; \
+  for idx in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128; do \
+    if [ -d normal$idx ]; then \
+      mv -f normal$idx/libstdc++.sum normal$idx/libstdc++.sum.sep; \
+      mv -f normal$idx/libstdc++.log normal$idx/libstdc++.log.sep; \
+    fi; \
+  done; \
+  /bin/bash ../../../../libstdc++-v3/testsuite/../../contrib/dg-extract-results.sh \
+    normal[0-9]*/libstdc++.sum.sep > libstdc++.sum; \
+  /bin/bash ../../../../libstdc++-v3/testsuite/../../contrib/dg-extract-results.sh -L \
+    normal[0-9]*/libstdc++.log.sep > libstdc++.log; \
+  exit 0; \
+fi; \
+srcdir=`CDPATH="${ZSH_VERSION+.}:" && cd ../../../../libstdc++-v3/testsuite && pwd`; export srcdir; \
+EXPECT=expect; export EXPECT; \
+runtest=runtest; \
+if [ -z "$runtest" ]; then runtest=runtest; fi; \
+tool=libstdc++; \
+if [ -n "" ]; then \
+  if [ -f normal-parallel/finished ]; then rm -rf ""; exit 0; fi; \
+  GCC_RUNTEST_PARALLELIZE_DIR=`${PWDCMD-pwd}`/normal-parallel; \
+  export GCC_RUNTEST_PARALLELIZE_DIR; \
+  cd ""; \
+fi; \
+if /bin/bash -c "$runtest --version" > /dev/null 2>&1; then \
+  $runtest  --tool $tool --srcdir $srcdir \
+	    --verbose; \
+  if [ -n "" ]; then \
+    touch $GCC_RUNTEST_PARALLELIZE_DIR/finished; \
+  fi; \
+else \
+  echo "WARNING: could not find \`runtest'" 1>&2; :;\
+fi
+make[4]: Entering directory '/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/testsuite'
+Expect binary is expect
+Expect binary is expect
+Expect binary is expect
+Expect binary is expect
+Expect binary is expect
+Expect binary is expect
+Expect binary is expect
+Using /usr/share/dejagnu/runtest.exp as main test driver
+Using /usr/share/dejagnu/runtest.exp as main test driver
+Using /usr/share/dejagnu/runtest.exp as main test driver
+Expect binary is expect
+Using /usr/share/dejagnu/runtest.exp as main test driver
+Using /usr/share/dejagnu/runtest.exp as main test driver
+Using /usr/share/dejagnu/runtest.exp as main test driver
+Verbose level is 1
+Login name is kmatsui
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/testsuite/normal1/site.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/testsuite/normal1/site.exp
+Verbose level is 1
+Using test sources in /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite
+Using test binaries in /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/testsuite/normal1
+Tool root directory is /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/testsuite
+Login name is kmatsui
+Using /usr/share/dejagnu to find libraries
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/testsuite/normal5/site.exp
+Found /usr/share/dejagnu/site.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/testsuite/normal5/site.exp
+Using test sources in /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite
+Using test binaries in /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/testsuite/normal5
+Tool root directory is /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/testsuite
+Using /usr/share/dejagnu to find libraries
+Found /usr/share/dejagnu/site.exp
+Loading /usr/share/dejagnu/utils.exp
+Verbose level is 1
+Login name is kmatsui
+Loading /usr/share/dejagnu/framework.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/testsuite/normal3/site.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/testsuite/normal3/site.exp
+Loading /usr/share/dejagnu/utils.exp
+Using test sources in /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite
+Using test binaries in /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/testsuite/normal3
+Tool root directory is /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/testsuite
+Using /usr/share/dejagnu to find libraries
+Loading /usr/share/dejagnu/framework.exp
+Loading /usr/share/dejagnu/debugger.exp
+Found /usr/share/dejagnu/site.exp
+Loading /usr/share/dejagnu/remote.exp
+Loading /usr/share/dejagnu/debugger.exp
+Verbose level is 1
+Verbose level is 1
+Loading /usr/share/dejagnu/utils.exp
+Login name is kmatsui
+Login name is kmatsui
+Loading /usr/share/dejagnu/remote.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/testsuite/normal6/site.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/testsuite/normal2/site.exp
+Loading /usr/share/dejagnu/telnet.exp
+Loading /usr/share/dejagnu/framework.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/testsuite/normal6/site.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/testsuite/normal2/site.exp
+Loading /usr/share/dejagnu/rlogin.exp
+Using test sources in /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite
+Using test binaries in /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/testsuite/normal6
+Tool root directory is /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/testsuite
+Loading /usr/share/dejagnu/kermit.exp
+Using test sources in /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite
+Using test binaries in /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/testsuite/normal2
+Tool root directory is /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/testsuite
+Using /usr/share/dejagnu to find libraries
+Using /usr/share/dejagnu to find libraries
+Loading /usr/share/dejagnu/tip.exp
+Found /usr/share/dejagnu/site.exp
+Loading /usr/share/dejagnu/telnet.exp
+Found /usr/share/dejagnu/site.exp
+Loading /usr/share/dejagnu/rsh.exp
+Loading /usr/share/dejagnu/debugger.exp
+Loading /usr/share/dejagnu/rlogin.exp
+Verbose level is 1
+Loading /usr/share/dejagnu/ssh.exp
+Loading /usr/share/dejagnu/remote.exp
+Login name is kmatsui
+Loading /usr/share/dejagnu/kermit.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/testsuite/normal7/site.exp
+Loading /usr/share/dejagnu/ftp.exp
+Loading /usr/share/dejagnu/tip.exp
+Loading /usr/share/dejagnu/rsh.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/testsuite/normal7/site.exp
+Loading /usr/share/dejagnu/utils.exp
+Loading /usr/share/dejagnu/utils.exp
+Using test sources in /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite
+Loading /usr/share/dejagnu/ssh.exp
+Using test binaries in /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/testsuite/normal7
+Tool root directory is /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/testsuite
+Loading /usr/share/dejagnu/target.exp
+Using /usr/share/dejagnu to find libraries
+Loading /usr/share/dejagnu/framework.exp
+Loading /usr/share/dejagnu/framework.exp
+Loading /usr/share/dejagnu/ftp.exp
+Loading /usr/share/dejagnu/telnet.exp
+Found /usr/share/dejagnu/site.exp
+Loading /usr/share/dejagnu/rlogin.exp
+Loading /usr/share/dejagnu/kermit.exp
+Loading /usr/share/dejagnu/targetdb.exp
+Loading /usr/share/dejagnu/target.exp
+Using /usr/share/dejagnu/runtest.exp as main test driver
+Loading /usr/share/dejagnu/tip.exp
+Loading /usr/share/dejagnu/libgloss.exp
+Loading /usr/share/dejagnu/debugger.exp
+Loading /usr/share/dejagnu/rsh.exp
+Loading /usr/share/dejagnu/debugger.exp
+Loading /usr/share/dejagnu/utils.exp
+Loading /usr/share/dejagnu/ssh.exp
+Loading /usr/share/dejagnu/remote.exp
+Loading /usr/share/dejagnu/targetdb.exp
+Loading /usr/share/dejagnu/remote.exp
+Loading /usr/share/dejagnu/framework.exp
+Loading /usr/share/dejagnu/libgloss.exp
+Loading /usr/share/dejagnu/ftp.exp
+Using /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/lib/libstdc++.exp as tool init file.
+Loading /usr/share/dejagnu/target.exp
+Loading /usr/share/dejagnu/telnet.exp
+Loading /usr/share/dejagnu/telnet.exp
+Loading /usr/share/dejagnu/debugger.exp
+Loading /usr/share/dejagnu/rlogin.exp
+Loading /usr/share/dejagnu/kermit.exp
+Using /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/lib/libstdc++.exp as tool init file.
+Loading /usr/share/dejagnu/rlogin.exp
+Loading /usr/share/dejagnu/remote.exp
+Loading /usr/share/dejagnu/targetdb.exp
+Loading /usr/share/dejagnu/tip.exp
+Loading /usr/share/dejagnu/kermit.exp
+Loading /usr/share/dejagnu/libgloss.exp
+Loading /usr/share/dejagnu/rsh.exp
+Loading /usr/share/dejagnu/dg.exp
+Loading /usr/share/dejagnu/ssh.exp
+Loading /usr/share/dejagnu/tip.exp
+Loading /usr/share/dejagnu/rsh.exp
+Loading /usr/share/dejagnu/ftp.exp
+Loading /usr/share/dejagnu/telnet.exp
+Loading /usr/share/dejagnu/ssh.exp
+Loading /usr/share/dejagnu/dg.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/target-supports.exp
+Loading /usr/share/dejagnu/rlogin.exp
+Loading /usr/share/dejagnu/target.exp
+Using /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/lib/libstdc++.exp as tool init file.
+Loading /usr/share/dejagnu/ftp.exp
+Loading /usr/share/dejagnu/kermit.exp
+Loading /usr/share/dejagnu/tip.exp
+Loading /usr/share/dejagnu/rsh.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/target-supports.exp
+Loading /usr/share/dejagnu/target.exp
+Loading /usr/share/dejagnu/targetdb.exp
+Loading /usr/share/dejagnu/ssh.exp
+Loading /usr/share/dejagnu/libgloss.exp
+Loading /usr/share/dejagnu/ftp.exp
+Loading /usr/share/dejagnu/dg.exp
+Loading /usr/share/dejagnu/targetdb.exp
+Loading /usr/share/dejagnu/target.exp
+Loading /usr/share/dejagnu/libgloss.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/target-supports.exp
+Using /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/lib/libstdc++.exp as tool init file.
+Loading /usr/share/dejagnu/targetdb.exp
+Loading /usr/share/dejagnu/libgloss.exp
+Using /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/lib/libstdc++.exp as tool init file.
+Loading /usr/share/dejagnu/dg.exp
+Using /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/lib/libstdc++.exp as tool init file.
+Loading /usr/share/dejagnu/dg.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/target-supports.exp
+Loading /usr/share/dejagnu/dg.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/target-supports.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/target-supports.exp
+Verbose level is 1
+Login name is kmatsui
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/testsuite/normal8/site.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/testsuite/normal8/site.exp
+Using test sources in /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite
+Using test binaries in /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/testsuite/normal8
+Tool root directory is /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/testsuite
+Using /usr/share/dejagnu to find libraries
+Found /usr/share/dejagnu/site.exp
+Loading /usr/share/dejagnu/utils.exp
+Loading /usr/share/dejagnu/framework.exp
+Loading /usr/share/dejagnu/debugger.exp
+Loading /usr/share/dejagnu/remote.exp
+Loading /usr/share/dejagnu/telnet.exp
+Loading /usr/share/dejagnu/rlogin.exp
+Loading /usr/share/dejagnu/kermit.exp
+Loading /usr/share/dejagnu/tip.exp
+Loading /usr/share/dejagnu/rsh.exp
+Loading /usr/share/dejagnu/ssh.exp
+Loading /usr/share/dejagnu/ftp.exp
+Loading /usr/share/dejagnu/target.exp
+Loading /usr/share/dejagnu/targetdb.exp
+Loading /usr/share/dejagnu/libgloss.exp
+Using /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/lib/libstdc++.exp as tool init file.
+Loading /usr/share/dejagnu/dg.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/target-supports.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/target-supports-dg.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/target-supports-dg.exp
+Loading /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/lib/prune.exp
+Loading /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/lib/dg-options.exp
+Loading /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/lib/prune.exp
+Loading /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/lib/dg-options.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/scanasm.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/scanasm.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/target-libpath.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/timeout.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/target-libpath.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/timeout-dg.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/wrapper.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/timeout.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/target-supports-dg.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/target-utils.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/timeout-dg.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/wrapper.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/target-utils.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/target-supports-dg.exp
+Loading /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/lib/prune.exp
+Testing libstdc++
+Loading /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/lib/dg-options.exp
+Loading /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/lib/prune.exp
+Testing libstdc++
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/scanasm.exp
+Opening log files in .
+Loading /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/lib/dg-options.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/target-supports-dg.exp
+Test run by kmatsui on Sun Mar 26 02:59:07 2023
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/scanasm.exp
+Opening log files in .
+Native configuration is x86_64-pc-linux-gnu
+
+		=== libstdc++ tests ===
+
+setting trap for SIGINT to interrupted by user
+setting trap for SIGQUIT to interrupted by user
+Test run by kmatsui on Sun Mar 26 02:59:07 2023
+setting trap for SIGTERM to terminated
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/target-libpath.exp
+Native configuration is x86_64-pc-linux-gnu
+
+		=== libstdc++ tests ===
+
+Loading /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/lib/prune.exp
+setting trap for SIGINT to interrupted by user
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/timeout.exp
+setting trap for SIGQUIT to interrupted by user
+setting trap for SIGTERM to terminated
+Loading /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/lib/dg-options.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/target-libpath.exp
+dirlist is /usr/share/dejagnu/baseboards
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/timeout-dg.exp
+pushing config for build, name is kmatsui-ThinkPad-X1-Carbon-Gen-9
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/timeout.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/wrapper.exp
+dirlist is /usr/share/dejagnu/baseboards
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/scanasm.exp
+pushing config for host, name is kmatsui-ThinkPad-X1-Carbon-Gen-9
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/timeout-dg.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/target-utils.exp
+dirlist is /usr/share/dejagnu/baseboards
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/wrapper.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/target-utils.exp
+pushing config for build, name is kmatsui-ThinkPad-X1-Carbon-Gen-9
+Schedule of variations:
+dirlist is /usr/share/dejagnu/baseboards
+    unix
+
+pushing config for host, name is kmatsui-ThinkPad-X1-Carbon-Gen-9
+target is unix
+Running target unix
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/target-libpath.exp
+Schedule of variations:
+    unix
+
+dirlist is /usr/share/dejagnu/baseboards/kmatsui-ThinkPad-X1-Carbon-Gen-9 /usr/share/dejagnu/baseboards
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/timeout.exp
+Using /usr/share/dejagnu/baseboards/unix.exp as board description file for target.
+target is unix
+Running target unix
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/timeout-dg.exp
+Using /usr/share/dejagnu/config/unix.exp as generic interface file for target.
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/wrapper.exp
+dirlist is /usr/share/dejagnu/baseboards/kmatsui-ThinkPad-X1-Carbon-Gen-9 /usr/share/dejagnu/baseboards
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/target-utils.exp
+Testing libstdc++
+Testing libstdc++
+Using /usr/share/dejagnu/baseboards/unix.exp as board description file for target.
+Using /usr/share/dejagnu/config/unix.exp as generic interface file for target.
+Opening log files in .
+Opening log files in .
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/target-supports-dg.exp
+Test run by kmatsui on Sun Mar 26 02:59:07 2023
+Native configuration is x86_64-pc-linux-gnu
+
+		=== libstdc++ tests ===
+
+Test run by kmatsui on Sun Mar 26 02:59:07 2023
+setting trap for SIGINT to interrupted by user
+setting trap for SIGQUIT to interrupted by user
+setting trap for SIGTERM to terminated
+Native configuration is x86_64-pc-linux-gnu
+Testing libstdc++
+
+		=== libstdc++ tests ===
+
+Loading /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/lib/prune.exp
+setting trap for SIGINT to interrupted by user
+setting trap for SIGQUIT to interrupted by user
+setting trap for SIGTERM to terminated
+Loading /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/lib/dg-options.exp
+dirlist is /usr/share/dejagnu/baseboards
+Opening log files in .
+pushing config for build, name is kmatsui-ThinkPad-X1-Carbon-Gen-9
+dirlist is /usr/share/dejagnu/baseboards
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/scanasm.exp
+pushing config for host, name is kmatsui-ThinkPad-X1-Carbon-Gen-9
+Test run by kmatsui on Sun Mar 26 02:59:07 2023
+dirlist is /usr/share/dejagnu/baseboards
+Native configuration is x86_64-pc-linux-gnu
+
+		=== libstdc++ tests ===
+
+pushing config for build, name is kmatsui-ThinkPad-X1-Carbon-Gen-9
+Schedule of variations:
+Using /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/config/default.exp as tool-and-target-specific interface file.
+Loading /usr/share/dejagnu/standard.exp
+    unix
+
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/dejapatches.exp
+setting trap for SIGINT to interrupted by user
+setting trap for SIGQUIT to interrupted by user
+setting trap for SIGTERM to terminated
+dirlist is /usr/share/dejagnu/baseboards
+pushing config for target, name is unix
+pushing config for host, name is kmatsui-ThinkPad-X1-Carbon-Gen-9
+target is unix
+Running target unix
+Using /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/config/default.exp as tool-and-target-specific interface file.
+Loading /usr/share/dejagnu/standard.exp
+dirlist is /usr/share/dejagnu/baseboards/kmatsui-ThinkPad-X1-Carbon-Gen-9 /usr/share/dejagnu/baseboards
+Schedule of variations:
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/dejapatches.exp
+Using /usr/share/dejagnu/baseboards/unix.exp as board description file for target.
+    unix
+dirlist is /usr/share/dejagnu/baseboards
+
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/target-libpath.exp
+pushing config for target, name is unix
+pushing config for build, name is kmatsui-ThinkPad-X1-Carbon-Gen-9
+Using /usr/share/dejagnu/config/unix.exp as generic interface file for target.
+dirlist is /usr/share/dejagnu/baseboards
+target is unix
+pushing config for host, name is kmatsui-ThinkPad-X1-Carbon-Gen-9
+Running target unix
+dirlist is /usr/share/dejagnu/baseboards/kmatsui-ThinkPad-X1-Carbon-Gen-9 /usr/share/dejagnu/baseboards
+Schedule of variations:
+Using /usr/share/dejagnu/baseboards/unix.exp as board description file for target.
+    unix
+
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/timeout.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/timeout-dg.exp
+Using /usr/share/dejagnu/config/unix.exp as generic interface file for target.
+target is unix
+Running target unix
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/wrapper.exp
+Running /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/libstdc++-abi/abi.exp ...
+dirlist is /usr/share/dejagnu/baseboards/kmatsui-ThinkPad-X1-Carbon-Gen-9 /usr/share/dejagnu/baseboards
+Using /usr/share/dejagnu/baseboards/unix.exp as board description file for target.
+Using /usr/share/dejagnu/config/unix.exp as generic interface file for target.
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/target-utils.exp
+Running /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/libstdc++-abi/abi.exp ...
+Using /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/config/default.exp as tool-and-target-specific interface file.
+Loading /usr/share/dejagnu/standard.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/dejapatches.exp
+pushing config for target, name is unix
+compiler is /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/xgcc
+Using /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/config/default.exp as tool-and-target-specific interface file.
+Loading /usr/share/dejagnu/standard.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/dejapatches.exp
+compiler is /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/xgcc
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/target-supports-dg.exp
+pushing config for target, name is unix
+Using /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/config/default.exp as tool-and-target-specific interface file.
+Loading /usr/share/dejagnu/standard.exp
+Running /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/libstdc++-abi/abi.exp ...
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/dejapatches.exp
+pushing config for target, name is unix
+Loading /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/lib/prune.exp
+Testing libstdc++
+Loading /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/lib/dg-options.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/scanasm.exp
+Opening log files in .
+Running /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/libstdc++-abi/abi.exp ...
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/target-libpath.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/timeout.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/timeout-dg.exp
+compiler is /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/xgcc
+Running /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/libstdc++-abi/abi.exp ...
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/wrapper.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/target-utils.exp
+Test run by kmatsui on Sun Mar 26 02:59:07 2023
+Native configuration is x86_64-pc-linux-gnu
+
+		=== libstdc++ tests ===
+
+setting trap for SIGINT to interrupted by user
+setting trap for SIGQUIT to interrupted by user
+setting trap for SIGTERM to terminated
+Testing libstdc++
+Opening log files in .
+Test run by kmatsui on Sun Mar 26 02:59:07 2023
+Native configuration is x86_64-pc-linux-gnu
+compiler is /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/xgcc
+
+		=== libstdc++ tests ===
+
+setting trap for SIGINT to interrupted by user
+setting trap for SIGQUIT to interrupted by user
+setting trap for SIGTERM to terminated
+dirlist is /usr/share/dejagnu/baseboards
+pushing config for build, name is kmatsui-ThinkPad-X1-Carbon-Gen-9
+dirlist is /usr/share/dejagnu/baseboards
+pushing config for host, name is kmatsui-ThinkPad-X1-Carbon-Gen-9
+compiler is /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/xgcc
+dirlist is /usr/share/dejagnu/baseboards
+Schedule of variations:
+pushing config for build, name is kmatsui-ThinkPad-X1-Carbon-Gen-9
+    unix
+
+dirlist is /usr/share/dejagnu/baseboards
+pushing config for host, name is kmatsui-ThinkPad-X1-Carbon-Gen-9
+target is unix
+Running target unix
+Schedule of variations:
+dirlist is /usr/share/dejagnu/baseboards/kmatsui-ThinkPad-X1-Carbon-Gen-9 /usr/share/dejagnu/baseboards
+    unix
+
+Using /usr/share/dejagnu/baseboards/unix.exp as board description file for target.
+Using /usr/share/dejagnu/config/unix.exp as generic interface file for target.
+target is unix
+Running target unix
+GCC path is .
+dirlist is /usr/share/dejagnu/baseboards/kmatsui-ThinkPad-X1-Carbon-Gen-9 /usr/share/dejagnu/baseboards
+Using /usr/share/dejagnu/baseboards/unix.exp as board description file for target.
+GCC path is .
+Using /usr/share/dejagnu/config/unix.exp as generic interface file for target.
+Using /usr/share/dejagnu/runtest.exp as main test driver
+Using /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/config/default.exp as tool-and-target-specific interface file.
+Using /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/config/default.exp as tool-and-target-specific interface file.
+Loading /usr/share/dejagnu/standard.exp
+Loading /usr/share/dejagnu/standard.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/dejapatches.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/dejapatches.exp
+pushing config for target, name is unix
+pushing config for target, name is unix
+GCC path is .
+Running /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/libstdc++-abi/abi.exp ...
+Running /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/libstdc++-abi/abi.exp ...
+GCC path is .
+compiler is /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/xgcc
+compiler is /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/xgcc
+Verbose level is 1
+Login name is kmatsui
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/testsuite/normal4/site.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/testsuite/normal4/site.exp
+Using test sources in /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite
+Using test binaries in /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/testsuite/normal4
+Tool root directory is /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/testsuite
+Using /usr/share/dejagnu to find libraries
+Found /usr/share/dejagnu/site.exp
+Loading /usr/share/dejagnu/utils.exp
+Loading /usr/share/dejagnu/framework.exp
+GCC path is .
+Loading /usr/share/dejagnu/debugger.exp
+Loading /usr/share/dejagnu/remote.exp
+Loading /usr/share/dejagnu/telnet.exp
+Loading /usr/share/dejagnu/rlogin.exp
+Loading /usr/share/dejagnu/kermit.exp
+Loading /usr/share/dejagnu/tip.exp
+Loading /usr/share/dejagnu/rsh.exp
+GCC path is .
+Loading /usr/share/dejagnu/ssh.exp
+Loading /usr/share/dejagnu/ftp.exp
+Loading /usr/share/dejagnu/target.exp
+Loading /usr/share/dejagnu/targetdb.exp
+Loading /usr/share/dejagnu/libgloss.exp
+Using /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/lib/libstdc++.exp as tool init file.
+Loading /usr/share/dejagnu/dg.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/target-supports.exp
+GCC path is .
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/target-supports-dg.exp
+Loading /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/lib/prune.exp
+Loading /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/lib/dg-options.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/scanasm.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/target-libpath.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/timeout.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/timeout-dg.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/wrapper.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/target-utils.exp
+Testing libstdc++
+Opening log files in .
+Test run by kmatsui on Sun Mar 26 02:59:07 2023
+Native configuration is x86_64-pc-linux-gnu
+
+		=== libstdc++ tests ===
+
+setting trap for SIGINT to interrupted by user
+setting trap for SIGQUIT to interrupted by user
+setting trap for SIGTERM to terminated
+dirlist is /usr/share/dejagnu/baseboards
+pushing config for build, name is kmatsui-ThinkPad-X1-Carbon-Gen-9
+dirlist is /usr/share/dejagnu/baseboards
+pushing config for host, name is kmatsui-ThinkPad-X1-Carbon-Gen-9
+Schedule of variations:
+    unix
+
+target is unix
+Running target unix
+dirlist is /usr/share/dejagnu/baseboards/kmatsui-ThinkPad-X1-Carbon-Gen-9 /usr/share/dejagnu/baseboards
+Using /usr/share/dejagnu/baseboards/unix.exp as board description file for target.
+Using /usr/share/dejagnu/config/unix.exp as generic interface file for target.
+Using /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/config/default.exp as tool-and-target-specific interface file.
+Loading /usr/share/dejagnu/standard.exp
+Found /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/../../gcc/testsuite/lib/dejapatches.exp
+pushing config for target, name is unix
+Running /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/libstdc++-abi/abi.exp ...
+compiler is /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/xgcc
+GCC path is .
+libatomic support detected
+libgomp support detected
+shared library support detected
+libatomic support detected
+libgomp support detected
+shared library support detected
+LD_LIBRARY_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+LD_RUN_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+SHLIB_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+LD_LIBRARY_PATH_32=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+LD_LIBRARY_PATH_64=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+DYLD_LIBRARY_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+LD_LIBRARY_PATH = :/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+LD_LIBRARY_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+LD_RUN_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+SHLIB_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+LD_LIBRARY_PATH_32=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+LD_LIBRARY_PATH_64=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+DYLD_LIBRARY_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+LD_LIBRARY_PATH = :/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+libatomic support detected
+libgomp support detected
+shared library support detected
+LD_LIBRARY_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+LD_RUN_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+SHLIB_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+LD_LIBRARY_PATH_32=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+LD_LIBRARY_PATH_64=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+doing compile
+DYLD_LIBRARY_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+LD_LIBRARY_PATH = :/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+doing compile
+pid is 2015704 -2015704
+pid is 2015708 -2015708
+libatomic support detected
+libgomp support detected
+shared library support detected
+LD_LIBRARY_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+LD_RUN_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+SHLIB_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+LD_LIBRARY_PATH_32=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+LD_LIBRARY_PATH_64=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+DYLD_LIBRARY_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+LD_LIBRARY_PATH = :/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+doing compile
+pid is 2015752 -2015752
+doing compile
+pid is 2015798 -2015798
+libatomic support detected
+libgomp support detected
+shared library support detected
+LD_LIBRARY_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+LD_RUN_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+SHLIB_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+LD_LIBRARY_PATH_32=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+LD_LIBRARY_PATH_64=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+DYLD_LIBRARY_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+LD_LIBRARY_PATH = :/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+doing compile
+libatomic support detected
+libgomp support detected
+shared library support detected
+pid is 2015895 -2015895
+LD_LIBRARY_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+LD_RUN_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+SHLIB_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+LD_LIBRARY_PATH_32=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+LD_LIBRARY_PATH_64=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+DYLD_LIBRARY_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+LD_LIBRARY_PATH = :/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+libatomic support detected
+libgomp support detected
+shared library support detected
+LD_LIBRARY_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+LD_RUN_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+SHLIB_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+LD_LIBRARY_PATH_32=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+LD_LIBRARY_PATH_64=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+DYLD_LIBRARY_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+LD_LIBRARY_PATH = :/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+doing compile
+libatomic support detected
+libgomp support detected
+shared library support detected
+LD_LIBRARY_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+LD_RUN_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+SHLIB_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+LD_LIBRARY_PATH_32=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+LD_LIBRARY_PATH_64=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+DYLD_LIBRARY_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+LD_LIBRARY_PATH = :/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+pid is 2015923 -2015923
+doing compile
+doing compile
+pid is 2015947 -2015947
+pid is 2015950 -2015950
+pid is -1
+output is  status 0
+doing compile
+pid is 2015960 -2015960
+pid is -1
+output is  status 0
+wchar_t support detected
+symbol versioning support detected
+thread support detected
+pid is 2015964 -2015964
+pid is -1
+output is  status 0
+pid is 2015967 -2015967
+pid is -1
+output is  status 0
+doing compile
+pid is 2015970 -2015970
+pid is -1
+output is  status 0
+Running /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/libstdc++-dg/conformance.exp ...
+pid is -1
+output is  status 0
+Running /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/libstdc++-dg/conformance.exp ...
+pid is -1
+output is  status 0
+Running /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/libstdc++-dg/conformance.exp ...
+pid is -1
+output is  status 0
+Running /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/libstdc++-dg/conformance.exp ...
+pid is -1
+output is  status 0
+Running /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/libstdc++-dg/conformance.exp ...
+pid is -1
+output is  status 0
+Running /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/libstdc++-dg/conformance.exp ...
+pid is -1
+output is  status 0
+Running /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/libstdc++-dg/conformance.exp ...
+libatomic support detected
+libgomp support detected
+shared library support detected
+LD_LIBRARY_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+LD_RUN_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+SHLIB_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+LD_LIBRARY_PATH_32=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+LD_LIBRARY_PATH_64=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+DYLD_LIBRARY_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+LD_LIBRARY_PATH = :/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+doing compile
+libatomic support detected
+libgomp support detected
+shared library support detected
+pid is 2016445 -2016445
+LD_LIBRARY_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+LD_RUN_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+SHLIB_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+LD_LIBRARY_PATH_32=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+LD_LIBRARY_PATH_64=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+DYLD_LIBRARY_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+LD_LIBRARY_PATH = :/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+libatomic support detected
+libgomp support detected
+shared library support detected
+LD_LIBRARY_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+LD_RUN_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+SHLIB_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+LD_LIBRARY_PATH_32=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+LD_LIBRARY_PATH_64=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+DYLD_LIBRARY_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+LD_LIBRARY_PATH = :/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+doing compile
+pid is 2016496 -2016496
+doing compile
+pid is 2016531 -2016531
+libatomic support detected
+libgomp support detected
+shared library support detected
+LD_LIBRARY_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+LD_RUN_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+SHLIB_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+LD_LIBRARY_PATH_32=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+LD_LIBRARY_PATH_64=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+DYLD_LIBRARY_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+LD_LIBRARY_PATH = :/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+libatomic support detected
+libgomp support detected
+shared library support detected
+LD_LIBRARY_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+LD_RUN_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+SHLIB_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+LD_LIBRARY_PATH_32=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+LD_LIBRARY_PATH_64=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+DYLD_LIBRARY_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+LD_LIBRARY_PATH = :/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+doing compile
+pid is 2016719 -2016719
+doing compile
+pid is 2016727 -2016727
+libatomic support detected
+libgomp support detected
+shared library support detected
+LD_LIBRARY_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+LD_RUN_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+SHLIB_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+LD_LIBRARY_PATH_32=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+LD_LIBRARY_PATH_64=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+DYLD_LIBRARY_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+LD_LIBRARY_PATH = :/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+libatomic support detected
+libgomp support detected
+shared library support detected
+LD_LIBRARY_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+LD_RUN_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+SHLIB_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+LD_LIBRARY_PATH_32=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+LD_LIBRARY_PATH_64=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+DYLD_LIBRARY_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+LD_LIBRARY_PATH = :/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+doing compile
+pid is 2016793 -2016793
+doing compile
+pid is 2016803 -2016803
+pid is -1
+output is  status 0
+doing compile
+pid is 2016809 -2016809
+pid is -1
+output is  status 0
+wchar_t support detected
+symbol versioning support detected
+thread support detected
+pid is 2016813 -2016813
+pid is -1
+output is  status 0
+pid is 2016816 -2016816
+pid is -1
+output is  status 0
+doing compile
+pid is -1
+output is  status 0
+doing compile
+pid is 2016823 -2016823
+pid is 2016821 -2016821
+pid is -1
+output is  status 0
+wchar_t support detected
+symbol versioning support detected
+thread support detected
+pid is 2016829 -2016829
+pid is -1
+output is  status 0
+pid is 2016832 -2016832
+pid is -1
+output is  status 0
+doing compile
+pid is 2016835 -2016835
+pid is -1
+output is  status 0
+doing compile
+pid is 2016841 -2016841
+pid is -1
+output is  status 0
+wchar_t support detected
+symbol versioning support detected
+thread support detected
+pid is -1
+output is  status 0
+doing compile
+pid is 2016847 -2016847
+pid is -1
+output is  status 0
+pid is 2016852 -2016852
+pid is -1
+output is  status 0
+doing compile
+pid is 2016855 -2016855
+pid is 2016848 -2016848
+pid is -1
+output is  status 0
+doing compile
+pid is -1
+output is  status 0
+wchar_t support detected
+symbol versioning support detected
+thread support detected
+pid is 2016865 -2016865
+pid is -1
+output is  status 0
+pid is 2016869 -2016869
+pid is -1
+output is  status 0
+doing compile
+pid is 2016872 -2016872
+pid is 2016863 -2016863
+pid is -1
+output is  status 0
+wchar_t support detected
+symbol versioning support detected
+thread support detected
+pid is 2016877 -2016877
+pid is -1
+output is  status 0
+pid is 2016880 -2016880
+pid is -1
+output is  status 0
+doing compile
+pid is -1
+output is  status 0
+doing compile
+pid is 2016885 -2016885
+pid is 2016886 -2016886
+pid is -1
+output is  status 0
+wchar_t support detected
+symbol versioning support detected
+thread support detected
+pid is -1
+output is  status 0
+doing compile
+pid is 2016893 -2016893
+pid is -1
+output is  status 0
+pid is 2016901 -2016901
+pid is -1
+output is  status 0
+doing compile
+pid is 2016904 -2016904
+pid is 2016897 -2016897
+pid is -1
+output is  status 0
+wchar_t support detected
+symbol versioning support detected
+thread support detected
+pid is 2016909 -2016909
+pid is -1
+output is  status 0
+pid is 2016912 -2016912
+pid is -1
+output is  status 0
+doing compile
+pid is 2016915 -2016915
+pid is -1
+output is  status 0
+doing compile
+pid is 2016921 -2016921
+pid is -1
+output is  status 0
+doing compile
+pid is 2016927 -2016927
+pid is -1
+output is  status 0
+doing compile
+pid is 2016933 -2016933
+pid is -1
+output is  status 0
+doing compile
+pid is -1
+output is  status 0
+doing compile
+pid is 2016944 -2016944
+pid is 2016947 -2016947
+pid is -1
+output is  status 0
+doing compile
+pid is 2016954 -2016954
+pid is -1
+output is  status 0
+doing compile
+pid is 2016960 -2016960
+pid is -1
+output is  status 0
+doing compile
+pid is 2016964 -2016964
+pid is -1
+output is  status 0
+doing compile
+pid is 2016974 -2016974
+pid is -1
+output is  status 0
+doing compile
+pid is 2016978 -2016978
+pid is -1
+output is  status 0
+doing compile
+pid is 2016984 -2016984
+pid is -1
+output is  status 0
+doing compile
+pid is 2016988 -2016988
+pid is -1
+output is  status 0
+doing compile
+pid is 2016994 -2016994
+pid is -1
+output is  status 0
+doing compile
+pid is 2017000 -2017000
+pid is -1
+output is  status 0
+doing compile
+pid is 2017006 -2017006
+pid is -1
+output is  status 0
+doing compile
+pid is -1
+output is  status 0
+ar -rc ./libtestc++.a testsuite_abi.o testsuite_allocator.o testsuite_character.o testsuite_hooks.o verified_cmd_line_input.o prog_bar.o elapsed_timer.o 
+pid is 2017014 -2017014
+pid is 2017017 -2017017
+pid is -1
+output is  status 0
+link result is 0
+ranlib ./libtestc++.a
+pid is 2017021 -2017021
+pid is -1
+output is  status 0
+doing compile
+pid is 2017024 -2017024
+pid is -1
+output is  status 0
+doing compile
+pid is 2017030 -2017030
+pid is -1
+output is  status 0
+doing compile
+pid is 2017036 -2017036
+pid is -1
+output is  status 0
+doing compile
+pid is 2017042 -2017042
+pid is -1
+output is  status 0
+doing compile
+pid is 2017048 -2017048
+pid is -1
+output is  status 0
+doing compile
+pid is 2017054 -2017054
+pid is -1
+output is  status 0
+doing compile
+pid is 2017060 -2017060
+pid is -1
+output is  status 0
+doing compile
+pid is 2017071 -2017071
+pid is -1
+output is  status 0
+pid is 2017076 -2017076
+pid is -1
+output is  status 0
+doing compile
+pid is 2017082 -2017082
+pid is -1
+output is  status 0
+doing compile
+pid is 2017100 -2017100
+pid is -1
+output is  status 0
+doing compile
+pid is 2017106 -2017106
+pid is -1
+output is  status 0
+doing compile
+pid is 2017112 -2017112
+pid is -1
+output is  status 0
+doing compile
+pid is -1
+output is  status 0
+doing compile
+pid is 2017120 -2017120
+pid is 2017124 -2017124
+pid is -1
+output is  status 0
+doing compile
+pid is 2017130 -2017130
+pid is -1
+output is  status 0
+doing compile
+pid is 2017136 -2017136
+pid is -1
+output is  status 0
+doing compile
+pid is 2017142 -2017142
+pid is -1
+output is  status 0
+doing compile
+pid is 2017148 -2017148
+pid is -1
+output is  status 0
+doing compile
+pid is 2017159 -2017159
+pid is -1
+output is  status 0
+pid is -1
+output is  status 0
+doing compile
+pid is 2017166 -2017166
+spawning command ./abi_check --check-verbose current_symbols.txt baseline_symbols.txt
+pid is -1
+output is  status 0
+doing compile
+exp11 file8
+Running /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/libstdc++-dg/conformance.exp ...
+pid is 2017175 -2017175
+pid is -1
+output is  status 0
+doing compile
+pid is 2017190 -2017190
+pid is -1
+output is  status 0
+doing compile
+pid is 2017202 -2017202
+pid is -1
+output is  status 0
+doing compile
+pid is 2017224 -2017224
+pid is -1
+output is  status 0
+doing compile
+pid is 2017246 -2017246
+pid is -1
+output is  status 0
+ar -rc ./libtestc++.a testsuite_abi.o testsuite_allocator.o testsuite_character.o testsuite_hooks.o verified_cmd_line_input.o prog_bar.o elapsed_timer.o 
+pid is 2017263 -2017263
+pid is -1
+output is  status 0
+doing compile
+pid is -1
+output is  status 0
+link result is 0
+ranlib ./libtestc++.a
+pid is 2017270 -2017270
+pid is -1
+output is  status 0
+doing compile
+pid is 2017281 -2017281
+pid is 2017268 -2017268
+pid is -1
+output is  status 0
+doing compile
+pid is 2017293 -2017293
+pid is -1
+output is  status 0
+ar -rc ./libtestc++.a testsuite_abi.o testsuite_allocator.o testsuite_character.o testsuite_hooks.o verified_cmd_line_input.o prog_bar.o elapsed_timer.o 
+pid is 2017302 -2017302
+pid is -1
+output is  status 0
+link result is 0
+ranlib ./libtestc++.a
+pid is 2017306 -2017306
+pid is -1
+output is  status 0
+doing compile
+pid is -1
+output is  status 0
+pid is 2017314 -2017314
+doing compile
+pid is 2017319 -2017319
+pid is -1
+output is  status 0
+doing compile
+pid is -1
+output is  status 0
+doing compile
+pid is 2017342 -2017342
+pid is 2017345 -2017345
+libatomic support detected
+libgomp support detected
+shared library support detected
+LD_LIBRARY_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+LD_RUN_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+SHLIB_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+LD_LIBRARY_PATH_32=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+LD_LIBRARY_PATH_64=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+DYLD_LIBRARY_PATH=:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32
+LD_LIBRARY_PATH = :/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libatomic/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/../libgomp/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/./libstdc++-v3/src/.libs:/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/gcc/32:
+pid is -1
+output is  status 0
+ar -rc ./libtestc++.a testsuite_abi.o testsuite_allocator.o testsuite_character.o testsuite_hooks.o verified_cmd_line_input.o prog_bar.o elapsed_timer.o 
+doing compile
+pid is 2017373 -2017373
+pid is 2017372 -2017372
+pid is -1
+output is  status 0
+link result is 0
+ranlib ./libtestc++.a
+pid is 2017379 -2017379
+pid is -1
+output is  status 0
+doing compile
+pid is -1
+output is  status 0
+doing compile
+pid is 2017384 -2017384
+pid is 2017387 -2017387
+pid is -1
+output is  status 0
+ar -rc ./libtestc++.a testsuite_abi.o testsuite_allocator.o testsuite_character.o testsuite_hooks.o verified_cmd_line_input.o prog_bar.o elapsed_timer.o 
+pid is 2017395 -2017395
+pid is -1
+output is  status 0
+link result is 0
+ranlib ./libtestc++.a
+pid is 2017398 -2017398
+pid is -1
+output is  status 0
+doing compile
+pid is 2017401 -2017401
+pid is -1
+output is  status 0
+doing compile
+pid is -1
+output is  status 0
+doing compile
+pid is 2017409 -2017409
+pid is 2017412 -2017412
+pid is -1
+output is  status 0
+ar -rc ./libtestc++.a testsuite_abi.o testsuite_allocator.o testsuite_character.o testsuite_hooks.o verified_cmd_line_input.o prog_bar.o elapsed_timer.o 
+pid is 2017419 -2017419
+pid is -1
+output is  status 0
+link result is 0
+ranlib ./libtestc++.a
+pid is -1
+output is  status 0
+ar -rc ./libtestc++.a testsuite_abi.o testsuite_allocator.o testsuite_character.o testsuite_hooks.o verified_cmd_line_input.o prog_bar.o elapsed_timer.o 
+pid is 2017425 -2017425
+pid is 2017423 -2017423
+pid is -1
+output is  status 0
+link result is 0
+ranlib ./libtestc++.a
+pid is -1
+output is  status 0
+doing compile
+pid is -1
+output is  status 0
+doing compile
+pid is 2017436 -2017436
+pid is 2017430 -2017430
+pid is 2017435 -2017435
+pid is -1
+output is  status 0
+doing compile
+pid is 2017443 -2017443
+pid is -1
+output is  status 0
+ar -rc ./libtestc++.a testsuite_abi.o testsuite_allocator.o testsuite_character.o testsuite_hooks.o verified_cmd_line_input.o prog_bar.o elapsed_timer.o 
+pid is 2017451 -2017451
+pid is -1
+output is  status 0
+link result is 0
+ranlib ./libtestc++.a
+pid is 2017457 -2017457
+pid is -1
+output is  status 0
+subdirs are /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/17_intro /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/28_regex /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/23_containers /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/24_iterators /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/21_strings /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/27_io /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/30_threads /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/19_diagnostics /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/29_atomics /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/25_algorithms /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/26_numerics /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/22_locale /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/18_support /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/std /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/abi /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/backward /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/ext /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/performance /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/tr1 /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/tr2 /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/decimal /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/experimental /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/special_functions
+pid is -1
+output is  status 0
+doing compile
+pid is 2017460 -2017460
+pid is -1
+output is  status 0
+subdirs are /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/17_intro /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/28_regex /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/23_containers /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/24_iterators /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/21_strings /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/27_io /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/30_threads /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/19_diagnostics /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/29_atomics /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/25_algorithms /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/26_numerics /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/22_locale /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/18_support /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/std /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/abi /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/backward /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/ext /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/performance /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/tr1 /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/tr2 /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/decimal /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/experimental /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/special_functions
+pid is -1
+output is  status 0
+subdirs are /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/17_intro /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/28_regex /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/23_containers /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/24_iterators /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/21_strings /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/27_io /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/30_threads /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/19_diagnostics /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/29_atomics /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/25_algorithms /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/26_numerics /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/22_locale /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/18_support /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/std /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/abi /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/backward /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/ext /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/performance /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/tr1 /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/tr2 /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/decimal /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/experimental /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/special_functions
+doing compile
+pid is 2017476 -2017476
+doing compile
+pid is 2017492 -2017492
+pid is -1
+output is  status 0
+subdirs are /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/17_intro /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/28_regex /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/23_containers /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/24_iterators /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/21_strings /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/27_io /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/30_threads /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/19_diagnostics /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/29_atomics /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/25_algorithms /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/26_numerics /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/22_locale /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/18_support /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/std /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/abi /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/backward /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/ext /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/performance /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/tr1 /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/tr2 /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/decimal /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/experimental /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/special_functions
+pid is -1
+output is  status 0
+spawning command ./fileio2014835.x 
+exp11 file8
+doing compile
+pid is 2017505 -2017505
+pid is -1
+output is  status 0
+spawning command ./fileio2014837.x 
+exp11 file8
+pid is -1
+output is  status 0
+subdirs are /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/17_intro /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/28_regex /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/23_containers /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/24_iterators /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/21_strings /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/27_io /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/30_threads /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/19_diagnostics /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/29_atomics /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/25_algorithms /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/26_numerics /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/22_locale /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/18_support /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/std /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/abi /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/backward /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/ext /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/performance /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/tr1 /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/tr2 /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/decimal /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/experimental /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/special_functions
+pid is -1
+output is  status 0
+spawning command ./fileio2014838.x 
+exp11 file8
+pid is -1
+output is  status 0
+subdirs are /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/17_intro /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/28_regex /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/23_containers /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/24_iterators /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/21_strings /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/27_io /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/30_threads /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/19_diagnostics /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/29_atomics /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/25_algorithms /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/26_numerics /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/22_locale /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/18_support /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/std /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/abi /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/backward /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/ext /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/performance /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/tr1 /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/tr2 /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/decimal /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/experimental /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/special_functions
+pid is -1
+output is  status 0
+subdirs are /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/17_intro /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/28_regex /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/23_containers /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/24_iterators /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/21_strings /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/27_io /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/30_threads /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/19_diagnostics /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/29_atomics /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/25_algorithms /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/26_numerics /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/22_locale /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/18_support /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/std /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/abi /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/backward /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/ext /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/performance /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/tr1 /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/tr2 /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/decimal /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/experimental /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/special_functions
+Testing c++1998/all_pedantic_errors.cc
+extra_tool_flags are:  -pedantic-errors
+doing compile
+pid is 2017534 -2017534
+doing compile
+pid is 2017539 -2017539
+Testing c++2011/all_attributes.cc
+extra_tool_flags are:  -std=gnu++11
+doing compile
+pid is 2017543 -2017543
+pid is -1
+output is  status 0
+spawning command ./fileio2014830.x 
+exp11 file8
+doing compile
+pid is 2017556 -2017556
+doing compile
+doing compile
+pid is 2017564 -2017564
+pid is 2017567 -2017567
+Testing c++2011/stdc++_multiple_inclusion.cc
+extra_tool_flags are:  -std=gnu++11
+doing compile
+pid is 2017572 -2017572
+pid is -1
+output is  status 0
+spawning command ./fileio2014831.x 
+pid is -1
+output is  status 0
+spawning command ./fileio2014861.x 
+pid is -1
+output is  status 0
+spawning command ./fileio2014898.x 
+exp11 file8
+exp11 file8
+exp11 file8
+Testing c++2017/all_attributes.cc
+extra_tool_flags are:  -std=gnu++17
+doing compile
+pid is 2017597 -2017597
+Testing c++2020/all_no_exceptions.cc
+extra_tool_flags are:  -std=gnu++2a -fno-exceptions
+doing compile
+pid is 2017601 -2017601
+Testing 17_intro/static.cc
+extra_tool_flags are:  -static-libstdc++
+doing compile
+pid is 2017605 -2017605
+Testing aligned_alloc/aligned_alloc.cc
+doing compile
+pid is 2017609 -2017609
+pid is -1
+output is  status 0
+doing compile
+pid is 2017613 -2017613
+pid is -1
+output is  status 0
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2017617 -2017617
+pid is -1
+output is  status 0
+doing compile
+pid is 2017623 -2017623
+pid is -1
+output is  status 0
+wchar_t support detected
+symbol versioning support detected
+thread support detected
+pid is 2017627 -2017627
+pid is -1
+output is  status 0
+pid is 2017630 -2017630
+pid is -1
+output is  status 0
+doing compile
+pid is 2017633 -2017633
+pid is -1
+output is  status 0
+spawning command ./static.exe 
+exp11 file8
+Testing 17_intro/tag_type_explicit_ctor.cc
+doing compile
+pid is 2017644 -2017644
+pid is -1
+output is  status 0
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2017648 -2017648
+pid is -1
+output is  status 0
+Testing c++2014/all_attributes.cc
+extra_tool_flags are:  -std=gnu++14
+doing compile
+pid is 2017652 -2017652
+pid is -1
+output is  status 0
+Testing c++2011/all_no_exceptions.cc
+extra_tool_flags are:  -std=gnu++11 -fno-exceptions
+doing compile
+pid is 2017656 -2017656
+pid is -1
+output is  status 0
+Testing c++1998/charset.cc
+extra_tool_flags are:  -finput-charset=ascii
+doing compile
+pid is 2017665 -2017665
+pid is -1
+output is  status 0
+spawning command ./aligned_alloc.exe 
+exp11 file8
+Testing bad_alloc/cons_virtual_derivation.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2017671 -2017671
+pid is -1
+output is  status 0
+Testing c++2017/all_no_exceptions.cc
+extra_tool_flags are:  -fno-exceptions
+doing compile
+pid is 2017675 -2017675
+pid is -1
+close result is 2017648 exp8 0 1
+output is /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/17_intro/tag_type_explicit_ctor.cc: In function 'int main()':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/17_intro/tag_type_explicit_ctor.cc:49: error: converting to 'std::nothrow_t' from initializer list would use explicit constructor 'constexpr std::nothrow_t::nothrow_t()'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/17_intro/tag_type_explicit_ctor.cc:50: error: converting to 'std::piecewise_construct_t' from initializer list would use explicit constructor 'constexpr std::piecewise_construct_t::piecewise_construct_t()'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/17_intro/tag_type_explicit_ctor.cc:51: error: converting to 'std::allocator_arg_t' from initializer list would use explicit constructor 'constexpr std::allocator_arg_t::allocator_arg_t()'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/17_intro/tag_type_explicit_ctor.cc:53: error: converting to 'std::defer_lock_t' from initializer list would use explicit constructor 'constexpr std::defer_lock_t::defer_lock_t()'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/17_intro/tag_type_explicit_ctor.cc:54: error: converting to 'std::try_to_lock_t' from initializer list would use explicit constructor 'constexpr std::try_to_lock_t::try_to_lock_t()'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/17_intro/tag_type_explicit_ctor.cc:55: error: converting to 'std::try_to_lock_t' from initializer list would use explicit constructor 'constexpr std::try_to_lock_t::try_to_lock_t()'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/17_intro/tag_type_explicit_ctor.cc:60: error: converting to 'std::nothrow_t' from initializer list would use explicit constructor 'constexpr std::nothrow_t::nothrow_t()'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/17_intro/tag_type_explicit_ctor.cc:61: error: converting to 'std::piecewise_construct_t' from initializer list would use explicit constructor 'constexpr std::piecewise_construct_t::piecewise_construct_t()'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/17_intro/tag_type_explicit_ctor.cc:62: error: converting to 'std::allocator_arg_t' from initializer list would use explicit constructor 'constexpr std::allocator_arg_t::allocator_arg_t()'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/17_intro/tag_type_explicit_ctor.cc:67: error: converting to 'std::defer_lock_t' from initializer list would use explicit constructor 'constexpr std::defer_lock_t::defer_lock_t()'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/17_intro/tag_type_explicit_ctor.cc:68: error: converting to 'std::try_to_lock_t' from initializer list would use explicit constructor 'constexpr std::try_to_lock_t::try_to_lock_t()'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/17_intro/tag_type_explicit_ctor.cc:69: error: converting to 'std::adopt_lock_t' from initializer list would use explicit constructor 'constexpr std::adopt_lock_t::adopt_lock_t()'
+ status 1
+compiler exited with status 1
+Testing 17_intro/using_namespace_std.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2017679 -2017679
+pid is -1
+output is  status 0
+Testing c++2014/all_no_exceptions.cc
+extra_tool_flags are:  -std=gnu++14 -fno-exceptions
+doing compile
+pid is 2017683 -2017683
+pid is -1
+output is  status 0
+Testing c++2011/all_no_rtti.cc
+extra_tool_flags are:  -std=gnu++11 -fno-rtti
+doing compile
+pid is 2017687 -2017687
+pid is -1
+output is  status 0
+Testing c++2020/all_no_rtti.cc
+extra_tool_flags are:  -std=gnu++2a -fno-rtti
+doing compile
+pid is 2017691 -2017691
+pid is -1
+output is  status 0
+spawning command ./cons_virtual_derivation.exe 
+exp11 file8
+Testing bad_alloc/what.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2017702 -2017702
+pid is -1
+output is  status 0
+Testing 17_intro/using_namespace_std_exp_neg.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2017707 -2017707
+pid is -1
+output is  status 0
+Testing c++1998/complex.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2017711 -2017711
+pid is -1
+output is  status 0
+Testing c++2014/all_no_rtti.cc
+extra_tool_flags are:  -std=gnu++14 -fno-rtti
+doing compile
+pid is 2017717 -2017717
+pid is -1
+output is  status 0
+doing compile
+pid is 2017721 -2017721
+pid is -1
+output is  status 0
+Testing c++2017/all_no_rtti.cc
+extra_tool_flags are:  -std=gnu++17 -fno-rtti
+doing compile
+pid is 2017725 -2017725
+pid is -1
+output is  status 0
+Testing c++2011/all_pedantic_errors.cc
+extra_tool_flags are:  -std=gnu++11 -pedantic-errors
+doing compile
+pid is 2017729 -2017729
+pid is -1
+output is  status 0
+doing compile
+pid is 2017736 -2017736
+pid is -1
+output is  status 0
+spawning command ./what.exe 
+exp11 file8
+Testing bad_cast/cons_virtual_derivation.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2017747 -2017747
+pid is -1
+close result is 2017707 exp8 0 1
+output is /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/17_intro/using_namespace_std_exp_neg.cc:65: error: 'experimental' is not a namespace-name
+ status 1
+compiler exited with status 1
+Testing 17_intro/using_namespace_std_tr1_neg.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2017753 -2017753
+pid is -1
+output is  status 0
+doing compile
+pid is 2017759 -2017759
+pid is -1
+output is  status 0
+Testing c++1998/operator_names.cc
+extra_tool_flags are:  -fno-operator-names
+doing compile
+pid is 2017763 -2017763
+pid is -1
+output is  status 0
+Testing c++2014/all_pedantic_errors.cc
+extra_tool_flags are:  -std=gnu++14 -pedantic-errors
+doing compile
+pid is 2017767 -2017767
+pid is -1
+output is  status 0
+doing compile
+pid is 2017773 -2017773
+pid is -1
+output is  status 0
+Testing c++2011/charset.cc
+extra_tool_flags are:  -finput-charset=ascii
+doing compile
+pid is 2017777 -2017777
+pid is -1
+output is  status 0
+Testing c++2020/all_pedantic_errors.cc
+extra_tool_flags are:  -std=gnu++2a -pedantic-errors
+doing compile
+pid is 2017781 -2017781
+pid is -1
+output is  status 0
+doing compile
+pid is 2017787 -2017787
+pid is -1
+output is  status 0
+Testing c++2017/all_pedantic_errors.cc
+extra_tool_flags are:  -pedantic-errors
+doing compile
+pid is 2017791 -2017791
+pid is -1
+output is  status 0
+doing compile
+pid is 2017797 -2017797
+pid is -1
+output is  status 0
+ar -rc ./libtestc++.a testsuite_abi.o testsuite_allocator.o testsuite_character.o testsuite_hooks.o verified_cmd_line_input.o prog_bar.o elapsed_timer.o 
+pid is 2017808 -2017808
+pid is -1
+output is  status 0
+link result is 0
+ranlib ./libtestc++.a
+pid is 2017811 -2017811
+pid is -1
+output is  status 0
+doing compile
+pid is 2017814 -2017814
+pid is -1
+output is  status 0
+spawning command ./cons_virtual_derivation.exe 
+exp11 file8
+Testing bad_cast/what.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2017820 -2017820
+pid is -1
+close result is 2017753 exp8 0 1
+output is /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/17_intro/using_namespace_std_tr1_neg.cc:68: error: 'tr1' is not a namespace-name
+ status 1
+compiler exited with status 1
+Testing 18_support/105387.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2017824 -2017824
+pid is -1
+output is  status 0
+subdirs are /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/17_intro /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/28_regex /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/23_containers /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/24_iterators /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/21_strings /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/27_io /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/30_threads /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/19_diagnostics /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/29_atomics /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/25_algorithms /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/26_numerics /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/22_locale /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/18_support /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/std /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/abi /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/backward /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/ext /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/performance /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/tr1 /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/tr2 /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/decimal /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/experimental /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/special_functions
+pid is -1
+output is  status 0
+Testing c++2014/charset.cc
+extra_tool_flags are:  -finput-charset=ascii
+doing compile
+pid is 2017834 -2017834
+doing compile
+pid is 2017840 -2017840
+pid is -1
+output is  status 0
+spawning command ./fileio2014832.x 
+exp11 file8
+pid is -1
+output is  status 0
+Testing c++1998/profile_mode.cc
+extra_tool_flags are:  -std=gnu++98
+doing compile
+pid is 2017851 -2017851
+Testing 17_intro/badnames.cc
+extra_tool_flags are:  -D__GLIBCXX__=99999999
+doing compile
+pid is 2017855 -2017855
+pid is -1
+output is  status 0
+Testing c++2011/linkage.cc
+extra_tool_flags are:  -std=gnu++11
+doing compile
+pid is 2017859 -2017859
+pid is -1
+output is  status 0
+spawning command ./what.exe 
+exp11 file8
+Testing bad_exception/23591_thread-1.c
+extra_tool_flags are:  -g -O2 -pthread -ldl -x c -fvtable-verify=none -Wno-pedantic
+compiling and executing as C, not C++
+doing compile
+pid is 2017870 -2017870
+pid is -1
+output is  status 0
+spawning command ./23591_thread-1.exe 
+exp11 file8
+Testing bad_exception/59392.cc
+Testing bad_exception/cons_virtual_derivation.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2017882 -2017882
+pid is -1
+output is  status 0
+Testing c++2011/operator_names.cc
+extra_tool_flags are:  -std=gnu++11 -fno-operator-names
+doing compile
+pid is -1
+output is  status 0
+Testing c++2017/charset.cc
+extra_tool_flags are:  -finput-charset=ascii
+doing compile
+pid is 2017891 -2017891
+pid is -1
+output is  status 0
+spawning command ./105387.exe 
+exp11 file8
+Testing 18_support/105387_memptr.cc
+doing compile
+pid is 2017893 -2017893
+pid is 2017900 -2017900
+pid is -1
+output is  status 0
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is -1
+output is  status 0
+Testing c++1998/stdc++.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2017905 -2017905
+pid is 2017907 -2017907
+pid is -1
+output is  status 0
+Testing c++2020/charset.cc
+extra_tool_flags are:  -finput-charset=ascii
+doing compile
+pid is 2017913 -2017913
+pid is -1
+output is  status 0
+Testing 17_intro/freestanding.cc
+extra_tool_flags are:  -lsupc++ -fvtable-verify=none
+doing compile
+pid is 2017917 -2017917
+pid is -1
+output is  status 0
+pid is -1
+output is  status 0
+spawning command ./freestanding.exe 
+Testing c++2014/operator_names.cc
+extra_tool_flags are:  -std=gnu++14 -fno-operator-names
+doing compile
+pid is 2017927 -2017927
+exp11 file8
+Testing c++1998/103650.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2017932 -2017932
+pid is -1
+output is  status 0
+Testing c++1998/49745.cc
+extra_tool_flags are:  -D__GLIBCXX__=99999999
+doing compile
+pid is 2017936 -2017936
+pid is -1
+output is  status 0
+pid is -1
+output is  status 0
+Testing c++1998/stdc++_assert_neg.cc
+spawning command ./cons_virtual_derivation.exe 
+doing compile
+exp11 file8
+Testing bad_exception/what.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2017947 -2017947
+pid is 2017950 -2017950
+pid is -1
+output is  status 0
+extra_tool_flags are:  -D_GLIBCXX_NO_ASSERT
+doing compile
+pid is 2017955 -2017955
+pid is -1
+output is  status 0
+spawning command ./105387_memptr.exe 
+exp11 file8
+Testing 18_support/50594.cc
+doing compile
+pid is 2017966 -2017966
+pid is -1
+output is  status 0
+extra_tool_flags are:  -fwhole-program
+doing compile
+pid is 2017970 -2017970
+pid is -1
+output is  status 0
+Testing c++2011/parallel_mode.cc
+doing compile
+pid is 2017974 -2017974
+pid is -1
+output is  status 0
+extra_tool_flags are:  -std=gnu++11
+doing compile
+pid is 2017978 -2017978
+pid is -1
+output is  status 0
+Testing c++2011/profile_mode.cc
+extra_tool_flags are:  -std=gnu++11
+doing compile
+pid is 2017982 -2017982
+pid is -1
+output is  status 0
+Testing c++2011/stdc++.cc
+extra_tool_flags are:  -std=gnu++11
+doing compile
+pid is 2017986 -2017986
+pid is -1
+output is  status 0
+Testing c++2017/operator_names.cc
+extra_tool_flags are:  -fno-operator-names
+doing compile
+pid is 2017990 -2017990
+pid is -1
+output is  status 0
+spawning command ./50594.exe 
+exp11 file8
+Testing 18_support/51333.cc
+extra_tool_flags are:  -fkeep-inline-functions
+doing compile
+pid is 2018001 -2018001
+pid is -1
+output is  status 0
+Testing 18_support/96817.cc
+check_compile tool: libstdc++ for pthread
+doing compile
+pid is 2018010 -2018010
+pid is -1
+output is  status 0
+doing compile
+pid is 2018016 -2018016
+pid is -1
+output is  status 0
+doing compile
+pid is 2018020 -2018020
+pid is -1
+output is  status 0
+extra_tool_flags are:  -include bits/stdc++.h -pthread
+doing compile
+pid is 2018024 -2018024
+pid is -1
+output is  status 0
+Testing c++2020/operator_names.cc
+extra_tool_flags are:  -std=gnu++2a -fno-operator-names
+doing compile
+pid is 2018028 -2018028
+pid is -1
+output is  status 0
+Testing c++2014/parallel_mode.cc
+doing compile
+pid is -1
+output is  status 0
+Testing c++1998/all.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018032 -2018032
+pid is -1
+output is  status 0
+extra_tool_flags are:  -std=gnu++14
+doing compile
+pid is 2018035 -2018035
+pid is 2018039 -2018039
+pid is -1
+output is  status 0
+Testing c++2014/stdc++.cc
+extra_tool_flags are:  -std=gnu++14
+doing compile
+pid is 2018044 -2018044
+pid is -1
+output is  status 0
+Testing bad_typeid/what.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is -1
+close result is 2017955 exp8 0 1
+output is /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/17_intro/headers/c++1998/stdc++_assert_neg.cc: In function 'void foo()':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/17_intro/headers/c++1998/stdc++_assert_neg.cc:35: error: 'assert' was not declared in this scope
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/17_intro/headers/c++1998/stdc++_assert_neg.cc:35: note: 'assert' is defined in header '<cassert>'; did you forget to '#include <cassert>'?
+ status 1
+compiler exited with status 1
+Testing c++1998/stdc++_multiple_inclusion.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018055 -2018055
+pid is -1
+output is  status 0
+spawning command ./what.exe 
+pid is 2018053 -2018053
+exp11 file8
+Testing bad_typeid/cons_virtual_derivation.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018063 -2018063
+pid is -1
+output is  status 0
+spawning command ./96817.exe 
+exp11 file8
+Testing categories/94565.cc
+extra_tool_flags are:  -std=gnu++2a
+doing compile
+pid is 2018074 -2018074
+pid is -1
+output is  status 0
+Testing c++2014/stdc++_multiple_inclusion.cc
+extra_tool_flags are:  -std=gnu++14
+doing compile
+pid is -1
+output is  status 0
+Testing categories/partialord.cc
+extra_tool_flags are:  -std=gnu++2a
+doing compile
+pid is 2018078 -2018078
+pid is 2018081 -2018081
+pid is -1
+output is  status 0
+Testing categories/strongord.cc
+extra_tool_flags are:  -std=gnu++2a
+doing compile
+pid is 2018086 -2018086
+pid is -1
+output is  status 0
+Testing categories/weakord.cc
+extra_tool_flags are:  -std=gnu++2a
+doing compile
+pid is -1
+output is  status 0
+Testing c++2017/parallel_mode.cc
+doing compile
+pid is 2018092 -2018092
+pid is 2018090 -2018090
+pid is -1
+output is  status 0
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018098 -2018098
+pid is -1
+output is  status 0
+Testing categories/zero_neg.cc
+extra_tool_flags are:  -std=gnu++2a -Wno-unused-result
+doing compile
+pid is 2018102 -2018102
+pid is -1
+close result is 2018102 exp8 0 1
+output is /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/18_support/comparisons/categories/zero_neg.cc: In function 'void test01()':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/18_support/comparisons/categories/zero_neg.cc:33: error: invalid conversion from 'int' to 'std::__cmp_cat::__unspec*' [-fpermissive]
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/18_support/comparisons/categories/zero_neg.cc:21:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/libsupc++/compare:57: note:   initializing argument 1 of 'constexpr std::__cmp_cat::__unspec::__unspec(std::__cmp_cat::__unspec*)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/18_support/comparisons/categories/zero_neg.cc:34: error: invalid conversion from 'int' to 'std::__cmp_cat::__unspec*' [-fpermissive]
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/libsupc++/compare:57: note:   initializing argument 1 of 'constexpr std::__cmp_cat::__unspec::__unspec(std::__cmp_cat::__unspec*)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/18_support/comparisons/categories/zero_neg.cc:35: error: invalid conversion from 'int' to 'std::__cmp_cat::__unspec*' [-fpermissive]
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/libsupc++/compare:57: note:   initializing argument 1 of 'constexpr std::__cmp_cat::__unspec::__unspec(std::__cmp_cat::__unspec*)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/18_support/comparisons/categories/zero_neg.cc:38: error: invalid conversion from 'void*' to 'std::__cmp_cat::__unspec*' [-fpermissive]
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/libsupc++/compare:57: note:   initializing argument 1 of 'constexpr std::__cmp_cat::__unspec::__unspec(std::__cmp_cat::__unspec*)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/18_support/comparisons/categories/zero_neg.cc:39: error: invalid conversion from 'void*' to 'std::__cmp_cat::__unspec*' [-fpermissive]
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/libsupc++/compare:57: note:   initializing argument 1 of 'constexpr std::__cmp_cat::__unspec::__unspec(std::__cmp_cat::__unspec*)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/18_support/comparisons/categories/zero_neg.cc:40: error: invalid conversion from 'void*' to 'std::__cmp_cat::__unspec*' [-fpermissive]
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/libsupc++/compare:57: note:   initializing argument 1 of 'constexpr std::__cmp_cat::__unspec::__unspec(std::__cmp_cat::__unspec*)'
+ status 1
+compiler exited with status 1
+Testing common/1.cc
+extra_tool_flags are:  -std=gnu++2a
+doing compile
+pid is 2018106 -2018106
+pid is -1
+output is  status 0
+Testing object/93479.cc
+extra_tool_flags are:  -std=gnu++2a
+doing compile
+pid is 2018110 -2018110
+pid is -1
+close result is 2018110 exp8 0 1
+output is /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/18_support/comparisons/object/93479.cc: In function 'void test01()':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/18_support/comparisons/object/93479.cc:29: error: no match for call to '(std::compare_three_way) (int [1], int [1])'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/18_support/comparisons/object/93479.cc:21:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/libsupc++/compare:549: note: candidate: 'template<class _Tp, class _Up>  requires  three_way_comparable_with<_Tp, _Up, std::partial_ordering> constexpr auto std::compare_three_way::operator()(_Tp&&, _Up&&) const'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/libsupc++/compare:549: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/libsupc++/compare:549: note: constraints not satisfied
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/libsupc++/compare: In substitution of 'template<class _Tp, class _Up>  requires  three_way_comparable_with<_Tp, _Up, std::partial_ordering> constexpr auto std::compare_three_way::operator()(_Tp&&, _Up&&) const [with _Tp = int (&)[1]; _Up = int (&)[1]]':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/18_support/comparisons/object/93479.cc:29:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/libsupc++/compare:461:   required for the satisfaction of 'three_way_comparable<_Tp, _Cat>' [with _Tp = int (&)[1]; _Cat = std::partial_ordering]
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/libsupc++/compare:471:   required for the satisfaction of 'three_way_comparable_with<_Tp, _Up, std::partial_ordering>' [with _Tp = int (&)[1]; _Up = int (&)[1]]
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/libsupc++/compare:464:   in requirements with 'std::remove_reference_t<_Tp>& __a', 'std::remove_reference_t<_Tp>& __b' [with _Tp = int (&)[1]; _Cat = std::partial_ordering]
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/libsupc++/compare:467: note: the required expression '(__a <=> __b)' is invalid
+cc1plus: note: set '-fconcepts-diagnostics-depth=' to at least 2 for more detail
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/18_support/comparisons/object/93479.cc: In function 'void test02()':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/18_support/comparisons/object/93479.cc:41: error: no match for call to '(std::compare_three_way) (test02()::X&, test02()::X&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/libsupc++/compare:549: note: candidate: 'template<class _Tp, class _Up>  requires  three_way_comparable_with<_Tp, _Up, std::partial_ordering> constexpr auto std::compare_three_way::operator()(_Tp&&, _Up&&) const'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/libsupc++/compare:549: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/libsupc++/compare:549: note: constraints not satisfied
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/libsupc++/compare:37:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/concepts: In substitution of 'template<class _Tp, class _Up>  requires  three_way_comparable_with<_Tp, _Up, std::partial_ordering> constexpr auto std::compare_three_way::operator()(_Tp&&, _Up&&) const [with _Tp = test02()::X&; _Up = test02()::X&]':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/18_support/comparisons/object/93479.cc:41:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/concepts:317:   required for the satisfaction of '__partially_ordered_with<_Tp, _Tp>' [with _Tp = test02::X&]
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/libsupc++/compare:461:   required for the satisfaction of 'three_way_comparable<_Tp, _Cat>' [with _Tp = test02::X&; _Cat = std::partial_ordering]
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/libsupc++/compare:471:   required for the satisfaction of 'three_way_comparable_with<_Tp, _Up, std::partial_ordering>' [with _Tp = test02::X&; _Up = test02::X&]
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/concepts:318:   in requirements with 'std::remove_reference_t<_Tp>& __t', 'std::remove_reference_t<_Up>& __u' [with _Tp = test02::X&; _Up = test02::X&]
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/concepts:320: note: the required expression '(__t < __u)' is invalid
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/concepts:321: note: the required expression '(__t > __u)' is invalid
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/concepts:322: note: the required expression '(__t <= __u)' is invalid
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/concepts:323: note: the required expression '(__t >= __u)' is invalid
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/concepts:324: note: the required expression '(__u < __t)' is invalid
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/concepts:325: note: the required expression '(__u > __t)' is invalid
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/concepts:326: note: the required expression '(__u <= __t)' is invalid
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/concepts:327: note: the required expression '(__u >= __t)' is invalid
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/18_support/comparisons/object/93479.cc:42: error: no match for call to '(std::compare_three_way) (test02()::X&, const char [1])'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/libsupc++/compare:549: note: candidate: 'template<class _Tp, class _Up>  requires  three_way_comparable_with<_Tp, _Up, std::partial_ordering> constexpr auto std::compare_three_way::operator()(_Tp&&, _Up&&) const'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/libsupc++/compare:549: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/libsupc++/compare:549: note: constraints not satisfied
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/concepts: In substitution of 'template<class _Tp, class _Up>  requires  three_way_comparable_with<_Tp, _Up, std::partial_ordering> constexpr auto std::compare_three_way::operator()(_Tp&&, _Up&&) const [with _Tp = test02()::X&; _Up = const char (&)[1]]':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/18_support/comparisons/object/93479.cc:42:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/concepts:317:   required for the satisfaction of '__partially_ordered_with<_Tp, _Tp>' [with _Tp = test02::X&]
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/libsupc++/compare:461:   required for the satisfaction of 'three_way_comparable<_Tp, _Cat>' [with _Tp = test02::X&; _Cat = std::partial_ordering]
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/libsupc++/compare:471:   required for the satisfaction of 'three_way_comparable_with<_Tp, _Up, std::partial_ordering>' [with _Tp = test02::X&; _Up = const char (&)[1]]
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/concepts:318:   in requirements with 'std::remove_reference_t<_Tp>& __t', 'std::remove_reference_t<_Up>& __u' [with _Tp = test02::X&; _Up = test02::X&]
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/concepts:320: note: the required expression '(__t < __u)' is invalid
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/concepts:321: note: the required expression '(__t > __u)' is invalid
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/concepts:322: note: the required expression '(__t <= __u)' is invalid
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/concepts:323: note: the required expression '(__t >= __u)' is invalid
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/concepts:324: note: the required expression '(__u < __t)' is invalid
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/concepts:325: note: the required expression '(__u > __t)' is invalid
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/concepts:326: note: the required expression '(__u <= __t)' is invalid
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/concepts:327: note: the required expression '(__u >= __t)' is invalid
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/18_support/comparisons/object/93479.cc:43: error: no match for call to '(std::compare_three_way) (const char [1], test02()::X&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/libsupc++/compare:549: note: candidate: 'template<class _Tp, class _Up>  requires  three_way_comparable_with<_Tp, _Up, std::partial_ordering> constexpr auto std::compare_three_way::operator()(_Tp&&, _Up&&) const'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/libsupc++/compare:549: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/libsupc++/compare:549: note: constraints not satisfied
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/libsupc++/compare: In substitution of 'template<class _Tp, class _Up>  requires  three_way_comparable_with<_Tp, _Up, std::partial_ordering> constexpr auto std::compare_three_way::operator()(_Tp&&, _Up&&) const [with _Tp = const char (&)[1]; _Up = test02()::X&]':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/18_support/comparisons/object/93479.cc:43:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/libsupc++/compare:461:   required for the satisfaction of 'three_way_comparable<_Tp, _Cat>' [with _Tp = const char (&)[1]; _Cat = std::partial_ordering]
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/libsupc++/compare:471:   required for the satisfaction of 'three_way_comparable_with<_Tp, _Up, std::partial_ordering>' [with _Tp = const char (&)[1]; _Up = test02::X&]
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/libsupc++/compare:464:   in requirements with 'std::remove_reference_t<_Tp>& __a', 'std::remove_reference_t<_Tp>& __b' [with _Tp = const char (&)[1]; _Cat = std::partial_ordering]
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/libsupc++/compare:467: note: the required expression '(__a <=> __b)' is invalid
+ status 1
+compiler exited with status 1
+Testing object/lwg3530.cc
+extra_tool_flags are:  -std=gnu++2a
+doing compile
+pid is 2018114 -2018114
+pid is -1
+output is  status 0
+Testing c++2011/42319.cc
+extra_tool_flags are:  -std=gnu++11
+doing compile
+pid is -1
+output is  status 0
+pid is 2018118 -2018118
+Testing coroutines/95917.cc
+extra_tool_flags are:  -std=gnu++2a -g0
+doing compile
+pid is 2018122 -2018122
+pid is -1
+output is  status 0
+Testing c++2011/67309.cc
+extra_tool_flags are:  -std=gnu++11 -fsingle-precision-constant
+doing compile
+pid is 2018126 -2018126
+pid is -1
+output is  status 0
+Testing coroutines/hash.cc
+extra_tool_flags are:  -std=gnu++2a
+doing compile
+pid is 2018132 -2018132
+pid is -1
+output is  status 0
+spawning command ./what.exe 
+exp11 file8
+Testing byte/81076.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018146 -2018146
+pid is -1
+output is  status 0
+spawning command ./cons_virtual_derivation.exe 
+exp11 file8
+Testing coroutines/lwg3460.cc
+extra_tool_flags are:  -std=gnu++2a
+doing compile
+pid is 2018152 -2018152
+pid is -1
+output is  status 0
+Testing 18_support/cxa_vec.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018161 -2018161
+pid is -1
+output is  status 0
+spawning command ./hash.exe 
+exp11 file8
+Testing exception_ptr/64241.cc
+extra_tool_flags are:  -fno-exceptions -fno-rtti -O0
+doing compile
+pid is 2018167 -2018167
+pid is -1
+output is  status 0
+spawning command ./64241.exe 
+exp11 file8
+Testing exception_ptr/90295.cc
+extra_tool_flags are:  -O1 -g0
+doing compile
+pid is 2018178 -2018178
+pid is -1
+output is  status 0
+Testing c++1998/all_attributes.cc
+extra_tool_flags are:  -std=gnu++98
+doing compile
+pid is 2018182 -2018182
+pid is -1
+output is  status 0
+Testing exception_ptr/96657.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018186 -2018186
+pid is -1
+output is  status 0
+Testing exception_ptr/rethrow_exception.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018190 -2018190
+pid is -1
+output is  status 0
+Testing c++2020/stdc++.cc
+extra_tool_flags are:  -std=gnu++2a
+doing compile
+pid is 2018194 -2018194
+pid is -1
+output is  status 0
+Testing c++1998/all_c++200x_compatibility.cc
+extra_tool_flags are:  -Wc++0x-compat -Werror
+doing compile
+pid is 2018198 -2018198
+pid is -1
+output is  status 0
+Testing c++2017/stdc++.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018202 -2018202
+pid is -1
+output is  status 0
+Testing byte/global_neg.cc
+extra_tool_flags are:  -O0
+doing compile
+pid is 2018206 -2018206
+pid is -1
+close result is 2018206 exp8 0 1
+output is /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/18_support/byte/global_neg.cc:24: error: 'byte' does not name a type
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/18_support/byte/global_neg.cc:25: error: 'byte' has not been declared in 'std'
+ status 1
+compiler exited with status 1
+Testing byte/ops.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018210 -2018210
+pid is -1
+output is  status 0
+Testing csignal/types_std.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018214 -2018214
+pid is -1
+output is  status 0
+spawning command ./cxa_vec.exe 
+exp11 file8
+Testing 18_support/destroying_delete.cc
+extra_tool_flags are:  -std=gnu++2a
+doing compile
+pid is 2018225 -2018225
+pid is -1
+output is  status 0
+spawning command ./destroying_delete.exe 
+exp11 file8
+Testing exception/38732.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is -1
+output is  status 0
+Testing exception_ptr/current_exception.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018241 -2018241
+pid is 2018244 -2018244
+pid is -1
+output is  status 0
+spawning command ./rethrow_exception.exe 
+exp11 file8
+Testing 18_support/free_eh_pool.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018256 -2018256
+pid is -1
+output is  status 0
+Testing c++2017/stdc++_multiple_inclusion.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018260 -2018260
+pid is -1
+output is  status 0
+Testing byte/requirements.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018264 -2018264
+pid is -1
+output is  status 0
+Testing c++1998/all_no_exceptions.cc
+extra_tool_flags are:  -fno-exceptions
+doing compile
+pid is 2018268 -2018268
+pid is -1
+output is  status 0
+Testing cstdalign/std_c++0x_neg.cc
+extra_tool_flags are:  -std=gnu++98
+doing compile
+pid is 2018272 -2018272
+pid is -1
+close result is 2018272 exp8 0 1
+output is In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/cstdalign:35,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/18_support/headers/cstdalign/std_c++0x_neg.cc:21:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/c++0x_warning.h:32: error: #error This file requires compiler and library support for the ISO C++ 2011 standard. This support must be enabled with the -std=c++11 or -std=gnu++11 compiler options.
+ status 1
+compiler exited with status 1
+Testing cstdarg/macros.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018276 -2018276
+pid is -1
+output is  status 0
+spawning command ./current_exception.exe 
+pid is -1
+output is  status 0
+Testing c++2020/stdc++_multiple_inclusion.cc
+extra_tool_flags are:  -std=gnu++2a
+doing compile
+exp11 file8
+Testing exception_ptr/lifespan.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018292 -2018292
+pid is 2018293 -2018293
+pid is -1
+output is  status 0
+spawning command ./38732.exe 
+exp11 file8
+Testing exception/what.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018302 -2018302
+pid is -1
+output is  status 0
+spawning command ./free_eh_pool.exe 
+exp11 file8
+Testing cfloat/values.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018313 -2018313
+pid is -1
+output is  status 0
+Testing c++2020/all_attributes.cc
+extra_tool_flags are:  -std=gnu++2a
+doing compile
+pid is 2018317 -2018317
+pid is -1
+output is  status 0
+Testing algorithms/fallback.cc
+extra_tool_flags are:  -std=gnu++20
+doing compile
+pid is 2018321 -2018321
+pid is -1
+output is  status 0
+Testing algorithms/partial_order.cc
+extra_tool_flags are:  -std=gnu++2a
+doing compile
+pid is 2018325 -2018325
+pid is -1
+output is  status 0
+spawning command ./partial_order.exe 
+exp11 file8
+Testing algorithms/strong_order.cc
+extra_tool_flags are:  -std=gnu++2a
+doing compile
+pid is 2018336 -2018336
+pid is -1
+output is  status 0
+Testing algorithms/strong_order_floats.cc
+extra_tool_flags are:  -std=gnu++20
+doing compile
+pid is 2018340 -2018340
+pid is -1
+output is  status 0
+Testing cstdarg/types_std.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018344 -2018344
+pid is -1
+output is  status 0
+Testing algorithms/weak_order.cc
+extra_tool_flags are:  -std=gnu++2a
+doing compile
+pid is 2018348 -2018348
+pid is -1
+output is  status 0
+spawning command ./lifespan.exe 
+exp11 file8
+Testing exception_ptr/make_exception_ptr.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is -1
+output is  status 0
+spawning command ./what.exe 
+pid is 2018364 -2018364
+exp11 file8
+Testing exception_ptr/103630.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is -1
+output is  status 0
+Testing c++1998/all_no_rtti.cc
+extra_tool_flags are:  -fno-rtti
+doing compile
+pid is 2018370 -2018370
+pid is 2018372 -2018372
+pid is -1
+output is  status 0
+spawning command ./weak_order.exe 
+exp11 file8
+Testing cstdlib/functions_std.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018385 -2018385
+pid is -1
+output is  status 0
+Testing cfloat/values_c++17.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018389 -2018389
+pid is -1
+output is  status 0
+Testing 17_intro/names.cc
+extra_tool_flags are:  -D__GLIBCXX__=99999999
+doing compile
+pid is 2018393 -2018393
+pid is -1
+output is  status 0
+Testing cstdbool/macros.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018397 -2018397
+pid is -1
+output is  status 0
+spawning command ./make_exception_ptr.exe 
+exp11 file8
+Testing exception_ptr/make_exception_ptr_2.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018408 -2018408
+pid is -1
+output is  status 0
+spawning command ./103630.exe 
+exp11 file8
+Testing exception_ptr/40296.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018419 -2018419
+pid is -1
+output is  status 0
+Testing cstdlib/macros.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018423 -2018423
+pid is -1
+output is  status 0
+Testing climits/values.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018427 -2018427
+pid is -1
+output is  status 0
+Testing new/synopsis_cxx98.cc
+extra_tool_flags are:  -std=gnu++98
+doing compile
+pid is 2018431 -2018431
+pid is -1
+output is  status 0
+Testing new/types_std.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018435 -2018435
+pid is -1
+output is  status 0
+Testing requirements/typedefs.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018439 -2018439
+pid is -1
+output is  status 0
+Testing 17_intro/names_pstl.cc
+doing compile
+pid is 2018443 -2018443
+pid is -1
+close result is 2018443 exp8 0 1
+output is tbb_backend2014861.cc:1: fatal error: tbb/tbb.h: No such file or directory
+compilation terminated.
+ status 1
+compiler exited with status 1
+Testing 17_intro/shared_with_static_deps.cc
+check_compile tool: libstdc++ for fpic
+doing compile
+pid is 2018447 -2018447
+pid is -1
+output is  status 0
+extra_tool_flags are:  -shared -fPIC -static-libgcc -static-libstdc++
+doing compile
+pid is 2018453 -2018453
+pid is -1
+output is  status 0
+Testing cstdbool/std_c++0x_neg.cc
+extra_tool_flags are:  -std=gnu++98
+doing compile
+pid is 2018457 -2018457
+pid is -1
+close result is 2018457 exp8 0 1
+output is In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/cstdbool:35,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/18_support/headers/cstdbool/std_c++0x_neg.cc:21:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/c++0x_warning.h:32: error: #error This file requires compiler and library support for the ISO C++ 2011 standard. This support must be enabled with the -std=c++11 or -std=gnu++11 compiler options.
+ status 1
+compiler exited with status 1
+Testing cstddef/macros.cc
+extra_tool_flags are:  -Wno-conversion-null
+doing compile
+pid is 2018461 -2018461
+pid is -1
+output is  status 0
+Testing cstddef/types_std.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018465 -2018465
+pid is -1
+output is  status 0
+spawning command ./make_exception_ptr_2.exe 
+exp11 file8
+Testing exception_ptr/move.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018481 -2018481
+pid is -1
+output is  status 0
+Testing exception_ptr/60612-terminate.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018485 -2018485
+pid is -1
+output is  status 0
+Testing nested_exception/79114.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018489 -2018489
+pid is -1
+output is  status 0
+Testing csetjmp/functions_std.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018493 -2018493
+pid is -1
+output is  status 0
+Testing ctime/functions_std.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018497 -2018497
+pid is -1
+output is  status 0
+Testing stdfloat/types_std.cc
+extra_tool_flags are:  -std=gnu++2b
+doing compile
+pid is 2018501 -2018501
+pid is -1
+output is  status 0
+Testing launder/1.cc
+pid is -1
+output is  status 0
+extra_tool_flags are:   -include bits/stdc++.h
+Testing typeinfo/synopsis.cc
+doing compile
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018505 -2018505
+pid is 2018506 -2018506
+pid is -1
+output is  status 0
+Testing cstdint/std_c++0x_neg.cc
+extra_tool_flags are:  -std=gnu++98
+doing compile
+pid is 2018513 -2018513
+pid is -1
+close result is 2018513 exp8 0 1
+output is In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/cstdint:35,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/18_support/headers/cstdint/std_c++0x_neg.cc:21:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/c++0x_warning.h:32: error: #error This file requires compiler and library support for the ISO C++ 2011 standard. This support must be enabled with the -std=c++11 or -std=gnu++11 compiler options.
+ status 1
+compiler exited with status 1
+Testing cstdint/types_std_c++0x.cc
+doing compile
+pid is 2018517 -2018517
+pid is -1
+output is  status 0
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018521 -2018521
+pid is -1
+output is  status 0
+Testing nested_exception/cons.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018530 -2018530
+pid is -1
+output is  status 0
+spawning command ./60612-terminate.exe 
+exp11 file8
+Testing exception_ptr/60612-unexpected.cc
+Testing exception_ptr/62258.cc
+extra_tool_flags are:  -Wno-deprecated
+doing compile
+pid is 2018541 -2018541
+pid is -1
+output is  status 0
+spawning command ./move.exe 
+exp11 file8
+Testing exception_ptr/requirements.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018547 -2018547
+pid is -1
+output is  status 0
+Testing csetjmp/macros.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is -1
+output is  status 0
+spawning command ./62258.exe 
+exp11 file8
+Testing 18_support/new_nothrow.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018556 -2018556
+pid is 2018559 -2018559
+pid is -1
+output is  status 0
+Testing ctime/macros.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018566 -2018566
+pid is -1
+output is  status 0
+Testing typeinfo/types_std.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018575 -2018575
+pid is -1
+output is  status 0
+spawning command ./1.exe 
+exp11 file8
+Testing launder/nodiscard.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018581 -2018581
+pid is -1
+output is  status 0
+Testing numeric_limits/epsilon.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018586 -2018586
+pid is -1
+output is  status 0
+spawning command ./cons.exe 
+exp11 file8
+Testing nested_exception/nested_ptr.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018597 -2018597
+pid is -1
+output is  status 0
+spawning command ./requirements.exe 
+exp11 file8
+Testing exception_ptr/requirements_neg.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018608 -2018608
+pid is -1
+output is  status 0
+Testing ctime/types_std.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018612 -2018612
+pid is -1
+output is  status 0
+Testing csetjmp/types_std.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018616 -2018616
+pid is -1
+output is  status 0
+spawning command ./new_nothrow.exe 
+exp11 file8
+Testing numeric_limits/29989.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018627 -2018627
+pid is -1
+output is  status 0
+Testing version/macros.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018631 -2018631
+pid is -1
+output is /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/18_support/launder/nodiscard.cc: In function 'void test01(A*)':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/18_support/launder/nodiscard.cc:27: warning: ignoring return value of 'constexpr _Tp* std::launder(_Tp*) [with _Tp = A]', declared with attribute 'nodiscard' [-Wunused-result]
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_tempbuf.h:59,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_algo.h:69,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/algorithm:61,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/stdc++.h:51,
+                 from <command-line>:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/libsupc++/new:193: note: declared here
+ status 0
+Testing launder/requirements.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018635 -2018635
+pid is -1
+output is  status 0
+spawning command ./epsilon.exe 
+exp11 file8
+Testing numeric_limits/infinity.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018647 -2018647
+pid is -1
+output is  status 0
+spawning command ./nested_ptr.exe 
+exp11 file8
+Testing nested_exception/rethrow_if_nested-term.cc
+extra_tool_flags are:   -include bits/stdc++.h
+pid is -1
+close result is 2018608 exp8 0 1
+output is /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/18_support/exception_ptr/requirements_neg.cc: In function 'void test01()':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/18_support/exception_ptr/requirements_neg.cc:27: error: cannot convert 'std::__exception_ptr::exception_ptr' to 'int' in initialization
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/18_support/exception_ptr/requirements_neg.cc:28: error: cannot convert 'std::__exception_ptr::exception_ptr' to 'bool' in initialization
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/18_support/exception_ptr/requirements_neg.cc:29: error: cannot convert 'std::__exception_ptr::exception_ptr' to 'void*' in initialization
+ status 1
+compiler exited with status 1
+Testing requirements/constexpr_functions.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+doing compile
+pid is 2018659 -2018659
+pid is 2018658 -2018658
+pid is -1
+output is  status 0
+Testing exception/synopsis.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018666 -2018666
+pid is -1
+output is  status 0
+Testing csignal/functions_std.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018670 -2018670
+pid is -1
+output is  status 0
+Testing numeric_limits/40856.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018674 -2018674
+pid is -1
+output is  status 0
+Testing initializer_list/constexpr.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018678 -2018678
+pid is -1
+output is  status 0
+Testing launder/requirements_neg.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018682 -2018682
+pid is -1
+output is  status 0
+spawning command ./infinity.exe 
+exp11 file8
+Testing numeric_limits/is_iec559.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018693 -2018693
+pid is -1
+output is  status 0
+spawning command ./rethrow_if_nested-term.exe 
+exp11 file8
+Testing nested_exception/rethrow_if_nested.cc
+doing compile
+pid is -1
+output is  status 0
+Testing explicit_instantiation/1.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018706 -2018706
+pid is 2018704 -2018704
+pid is -1
+output is  status 0
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018712 -2018712
+pid is -1
+output is /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/18_support/headers/exception/synopsis.cc:27: warning: 'unexpected_handler' is deprecated [-Wdeprecated-declarations]
+ status 0
+Testing exception/types_std.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018716 -2018716
+pid is -1
+output is  status 0
+Testing csignal/macros.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018720 -2018720
+pid is -1
+output is  status 0
+Testing initializer_list/range_access.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018724 -2018724
+pid is -1
+output is  status 0
+Testing numeric_limits/char16_32_t.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018728 -2018728
+pid is -1
+close result is 2018682 exp8 0 1
+output is /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/18_support/launder/requirements_neg.cc: In function 'void test01()':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/18_support/launder/requirements_neg.cc:28: error: use of deleted function 'void std::launder(_Ret (*)(_Args ...) noexcept (_NE)) [with _Ret = void; _Args = {int}; bool _NE = true]'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_tempbuf.h:59,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_algo.h:69,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/algorithm:61,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/stdc++.h:51,
+                 from <command-line>:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/libsupc++/new:200: note: declared here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/18_support/launder/requirements_neg.cc:29: error: use of deleted function 'void std::launder(_Ret (*)(_Args ..., ...) noexcept (_NE)) [with _Ret = int; _Args = {const char*}; bool _NE = false]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/libsupc++/new:202: note: declared here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/18_support/launder/requirements_neg.cc:31: error: use of deleted function 'void std::launder(void*)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/libsupc++/new:204: note: declared here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/18_support/launder/requirements_neg.cc:33: error: use of deleted function 'void std::launder(const void*)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/libsupc++/new:205: note: declared here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/18_support/launder/requirements_neg.cc:35: error: use of deleted function 'void std::launder(volatile void*)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/libsupc++/new:206: note: declared here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/18_support/launder/requirements_neg.cc:37: error: use of deleted function 'void std::launder(const volatile void*)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/libsupc++/new:207: note: declared here
+ status 1
+compiler exited with status 1
+Testing requirements/1.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018732 -2018732
+pid is -1
+output is  status 0
+spawning command ./is_iec559.exe 
+exp11 file8
+Testing numeric_limits/is_signed.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018743 -2018743
+pid is -1
+output is  status 0
+Testing numeric_limits/specialization_default_values.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018747 -2018747
+pid is -1
+output is  status 0
+Testing limits/synopsis.cc
+doing compile
+pid is 2018751 -2018751
+pid is -1
+output is  status 0
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018755 -2018755
+pid is -1
+output is  status 0
+spawning command ./rethrow_if_nested.exe 
+exp11 file8
+Testing nested_exception/rethrow_nested.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018766 -2018766
+pid is -1
+output is  status 0
+Testing source_location/version.cc
+extra_tool_flags are:  -std=gnu++2a
+doing compile
+pid is 2018770 -2018770
+pid is -1
+output is  status 0
+Testing 18_support/terminate_handler.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018774 -2018774
+pid is -1
+output is  status 0
+Testing requirements/constexpr_functions.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018783 -2018783
+pid is -1
+output is  status 0
+Testing requirements/2.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is -1
+output is  status 0
+pid is 2018787 -2018787
+spawning command ./char16_32_t.exe 
+exp11 file8
+Testing numeric_limits/char8_t.cc
+extra_tool_flags are:  -fchar8_t
+doing compile
+pid is 2018793 -2018793
+pid is -1
+output is  status 0
+spawning command ./char8_t.exe 
+exp11 file8
+Testing cons/default.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018804 -2018804
+pid is -1
+output is  status 0
+spawning command ./is_signed.exe 
+exp11 file8
+Testing numeric_limits/lowest.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018817 -2018817
+pid is -1
+output is  status 0
+spawning command ./specialization_default_values.exe 
+exp11 file8
+Testing numeric_limits/traps.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018826 -2018826
+pid is -1
+output is  status 0
+Testing limits/synopsis_cxx23.cc
+extra_tool_flags are:  -std=gnu++2b
+doing compile
+pid is 2018830 -2018830
+pid is -1
+output is  status 0
+Testing new/synopsis.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018834 -2018834
+pid is -1
+output is  status 0
+spawning command ./rethrow_nested.exe 
+exp11 file8
+Testing nested_exception/throw_with_nested.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018850 -2018850
+pid is -1
+output is  status 0
+spawning command ./terminate_handler.exe 
+exp11 file8
+Testing type_info/103240.cc
+doing compile
+pid is 2018856 -2018856
+pid is -1
+output is  status 0
+extra_tool_flags are:  ./testsuite_shared.so
+doing compile
+pid is 2018860 -2018860
+pid is -1
+output is  status 0
+Testing requirements/explicit_instantiation.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018869 -2018869
+pid is -1
+output is  status 0
+Testing nested_exception/51438.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is -1
+output is  status 0
+spawning command ./103240.exe 
+exp11 file8
+Testing type_info/52562.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018876 -2018876
+pid is 2018873 -2018873
+pid is -1
+output is  status 0
+spawning command ./default.exe 
+exp11 file8
+Testing cons/default_c++0x.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018890 -2018890
+pid is -1
+output is  status 0
+spawning command ./lowest.exe 
+exp11 file8
+Testing numeric_limits/max_digits10.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018901 -2018901
+pid is -1
+output is  status 0
+Testing error_category/102425.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018910 -2018910
+pid is -1
+output is  status 0
+spawning command ./traps.exe 
+exp11 file8
+Testing 18_support/pthread_guard.cc
+extra_tool_flags are:  -pthread
+doing compile
+pid is 2018916 -2018916
+pid is -1
+output is  status 0
+spawning command ./pthread_guard.exe 
+exp11 file8
+Testing quick_exit/quick_exit.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018928 -2018928
+pid is -1
+output is  status 0
+spawning command ./throw_with_nested.exe 
+exp11 file8
+Testing 18_support/new_aligned.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018939 -2018939
+pid is -1
+output is  status 0
+Testing type_info/constexpr.cc
+extra_tool_flags are:  -std=gnu++23 -frtti -fdelete-null-pointer-checks
+doing compile
+pid is 2018943 -2018943
+pid is -1
+output is  status 0
+Testing type_info/fundamental.cc
+check_compile tool: libstdc++ for dfp
+doing compile
+pid is 2018947 -2018947
+pid is -1
+output is  status 0
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018953 -2018953
+pid is -1
+output is  status 0
+Testing nested_exception/62154.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018957 -2018957
+pid is -1
+output is  status 0
+Testing cons/1.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018961 -2018961
+pid is -1
+output is  status 0
+spawning command ./default_c++0x.exe 
+exp11 file8
+Testing numeric_limits/denorm_min.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018972 -2018972
+pid is -1
+output is  status 0
+spawning command ./max_digits10.exe 
+exp11 file8
+Testing numeric_limits/min_max.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018983 -2018983
+pid is -1
+output is  status 0
+spawning command ./102425.exe 
+exp11 file8
+Testing cons/copy_neg.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2018994 -2018994
+pid is -1
+output is  status 0
+spawning command ./quick_exit.exe 
+exp11 file8
+Testing 18_support/set_terminate.cc
+extra_tool_flags are:  -std=gnu++11
+doing compile
+pid is 2019005 -2019005
+pid is -1
+output is  status 0
+spawning command ./new_aligned.exe 
+exp11 file8
+Testing 18_support/new_delete_placement.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019021 -2019021
+pid is -1
+output is  status 0
+spawning command ./set_terminate.exe 
+exp11 file8
+Testing 18_support/set_unexpected.cc
+extra_tool_flags are:  -std=gnu++11 -Wno-deprecated-declarations
+doing compile
+pid is 2019027 -2019027
+pid is -1
+output is  status 0
+spawning command ./62154.exe 
+exp11 file8
+Testing nested_exception/68139.cc
+doing compile
+pid is 2019043 -2019043
+pid is -1
+output is  status 0
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019047 -2019047
+pid is -1
+output is  status 0
+spawning command ./set_unexpected.exe 
+exp11 file8
+Testing source_location/1.cc
+extra_tool_flags are:  -std=gnu++2a -include string -include stdexcept
+doing compile
+pid is 2019053 -2019053
+pid is -1
+output is  status 0
+spawning command ./1.exe 
+exp11 file8
+Testing cons/39882.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019064 -2019064
+pid is -1
+output is  status 0
+spawning command ./denorm_min.exe 
+exp11 file8
+Testing numeric_limits/digits10.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019075 -2019075
+pid is -1
+output is  status 0
+spawning command ./1.exe 
+exp11 file8
+Testing source_location/consteval.cc
+extra_tool_flags are:  -std=gnu++2a
+doing compile
+pid is 2019086 -2019086
+pid is -1
+output is  status 0
+Testing operators/not_equal.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019090 -2019090
+pid is -1
+output is  status 0
+spawning command ./fundamental.exe 
+exp11 file8
+Testing type_info/hash_code.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019106 -2019106
+pid is -1
+output is  status 0
+spawning command ./min_max.exe 
+exp11 file8
+Testing numeric_limits/primary.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019112 -2019112
+pid is -1
+close result is 2018994 exp8 0 1
+output is /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/19_diagnostics/error_category/cons/copy_neg.cc: In function 'int main()':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/19_diagnostics/error_category/cons/copy_neg.cc:27: error: use of deleted function '__gnu_test::test_category::test_category(const __gnu_test::test_category&)'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/19_diagnostics/error_category/cons/copy_neg.cc:22:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/util/testsuite_error.h:30: note: '__gnu_test::test_category::test_category(const __gnu_test::test_category&)' is implicitly deleted because the default definition would be ill-formed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/util/testsuite_error.h:30: error: use of deleted function 'std::_V2::error_category::error_category(const std::_V2::error_category&)'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/ios_base.h:46,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/streambuf:43,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h:35,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/iterator:66,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/stdc++.h:54,
+                 from <command-line>:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error:113: note: declared here
+ status 1
+compiler exited with status 1
+Testing cons/default.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019116 -2019116
+pid is -1
+output is  status 0
+spawning command ./new_delete_placement.exe 
+exp11 file8
+Testing 18_support/new_handler.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019127 -2019127
+pid is -1
+output is  status 0
+Testing operators/less.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019131 -2019131
+pid is -1
+output is  status 0
+spawning command ./39882.exe 
+exp11 file8
+Testing cons/lwg3629.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019142 -2019142
+pid is -1
+output is  status 0
+spawning command ./digits10.exe 
+exp11 file8
+Testing numeric_limits/dr559.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019153 -2019153
+pid is -1
+output is  status 0
+spawning command ./not_equal.exe 
+exp11 file8
+Testing operators/three_way.cc
+extra_tool_flags are:  -std=gnu++2a
+doing compile
+pid is 2019164 -2019164
+pid is -1
+output is  status 0
+Testing numeric_limits/quiet_NaN.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019169 -2019169
+pid is -1
+output is  status 0
+spawning command ./hash_code.exe 
+exp11 file8
+Testing uncaught_exception/14026.cc
+extra_tool_flags are:  -Wno-deprecated
+doing compile
+pid is 2019185 -2019185
+pid is -1
+output is  status 0
+spawning command ./default.exe 
+exp11 file8
+Testing error_category/generic_category.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019191 -2019191
+pid is -1
+output is  status 0
+spawning command ./14026.exe 
+exp11 file8
+Testing uncaught_exceptions/uncaught_exceptions.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019202 -2019202
+pid is -1
+output is  status 0
+spawning command ./new_handler.exe 
+exp11 file8
+Testing system_error/std_c++0x_neg.cc
+extra_tool_flags are:  -std=gnu++98
+doing compile
+pid is 2019218 -2019218
+pid is -1
+close result is 2019218 exp8 0 1
+output is In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error:37,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/19_diagnostics/headers/system_error/std_c++0x_neg.cc:21:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/c++0x_warning.h:32: error: #error This file requires compiler and library support for the ISO C++ 2011 standard. This support must be enabled with the -std=c++11 or -std=gnu++11 compiler options.
+ status 1
+compiler exited with status 1
+Testing system_error/types_std_c++0x.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019222 -2019222
+pid is -1
+output is  status 0
+spawning command ./three_way.exe 
+exp11 file8
+Testing cons/1.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019228 -2019228
+pid is -1
+output is  status 0
+spawning command ./less.exe 
+exp11 file8
+Testing operators/not_equal.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019239 -2019239
+pid is -1
+close result is 2019142 exp8 0 1
+output is In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/ios_base.h:46,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/streambuf:43,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h:35,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/iterator:66,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/stdc++.h:54,
+                 from <command-line>:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error: In instantiation of 'std::error_code::error_code(_ErrorCodeEnum) [with _ErrorCodeEnum = user::E1; <template-parameter-1-2> = void]':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/19_diagnostics/error_code/cons/lwg3629.cc:40:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error:242: error: use of deleted function 'void std::__adl_only::make_error_code()'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error:202: note: declared here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error:242: error: use of deleted function 'void std::__adl_only::make_error_code()'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error:202: note: declared here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error: In instantiation of 'std::error_code::error_code(_ErrorCodeEnum) [with _ErrorCodeEnum = user::E2; <template-parameter-1-2> = void]':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/19_diagnostics/error_code/cons/lwg3629.cc:43:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error:242: error: use of deleted function 'void std::__adl_only::make_error_code()'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error:202: note: declared here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error:242: error: use of deleted function 'void std::__adl_only::make_error_code()'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error:202: note: declared here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error: In instantiation of 'std::error_code::error_code(_ErrorCodeEnum) [with _ErrorCodeEnum = user::E3; <template-parameter-1-2> = void]':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/19_diagnostics/error_code/cons/lwg3629.cc:46:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error:242: error: use of deleted function 'void std::__adl_only::make_error_code()'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error:202: note: declared here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error:242: error: use of deleted function 'void std::__adl_only::make_error_code()'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error:202: note: declared here
+ status 1
+compiler exited with status 1
+Testing error_code/hash.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019243 -2019243
+pid is -1
+output is  status 0
+spawning command ./dr559.exe 
+exp11 file8
+Testing runtime_error/what-3.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019254 -2019254
+pid is -1
+output is  status 0
+spawning command ./quiet_NaN.exe 
+exp11 file8
+Testing requirements/constexpr_data.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019265 -2019265
+pid is -1
+output is  status 0
+spawning command ./generic_category.exe 
+exp11 file8
+Testing error_category/noexcept.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019281 -2019281
+pid is -1
+output is  status 0
+spawning command ./uncaught_exceptions.exe 
+exp11 file8
+Testing 18_support/unexpected_handler.cc
+extra_tool_flags are:  -Wno-deprecated-declarations
+doing compile
+pid is 2019287 -2019287
+pid is -1
+output is  status 0
+Testing logic_error/cons_virtual_derivation.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019296 -2019296
+pid is -1
+output is  status 0
+spawning command ./unexpected_handler.exe 
+exp11 file8
+Testing system_error/cons_virtual_derivation.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019302 -2019302
+pid is -1
+output is  status 0
+spawning command ./1.exe 
+exp11 file8
+Testing cons/39881.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019313 -2019313
+pid is -1
+output is  status 0
+spawning command ./not_equal.exe 
+exp11 file8
+Testing operators/three_way.cc
+extra_tool_flags are:  -std=gnu++2a
+doing compile
+pid is 2019324 -2019324
+pid is -1
+output is  status 0
+spawning command ./hash.exe 
+exp11 file8
+Testing error_code/is_error_code_v.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019335 -2019335
+pid is -1
+output is  status 0
+spawning command ./what-3.exe 
+exp11 file8
+Testing runtime_error/what-big.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019346 -2019346
+pid is -1
+output is  status 0
+spawning command ./three_way.exe 
+exp11 file8
+Testing cassert/macros.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019357 -2019357
+pid is -1
+output is  status 0
+Testing requirements/alias_decl.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019361 -2019361
+pid is -1
+output is  status 0
+Testing operators/equal.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019365 -2019365
+pid is -1
+output is  status 0
+spawning command ./cons_virtual_derivation.exe 
+exp11 file8
+Testing logic_error/what-1.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019381 -2019381
+pid is -1
+output is  status 0
+spawning command ./cons_virtual_derivation.exe 
+exp11 file8
+Testing system_error/noexcept.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019387 -2019387
+pid is -1
+output is  status 0
+spawning command ./39881.exe 
+exp11 file8
+Testing cons/lwg3629.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019398 -2019398
+pid is -1
+output is  status 0
+Testing modifiers/39882.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019402 -2019402
+pid is -1
+output is  status 0
+spawning command ./what-big.exe 
+exp11 file8
+Testing stacktrace/current.cc
+doing compile
+pid is 2019413 -2019413
+pid is -1
+close result is 2019413 exp8 0 1
+output is name2014831.cc:5: error: #error '_GLIBCXX_HAVE_STACKTRACE && _GLIBCXX_HOSTED' is false
+ status 1
+compiler exited with status 1
+Testing stacktrace/entry.cc
+Testing stacktrace/stacktrace.cc
+Testing stacktrace/synopsis.cc
+Testing stacktrace/version.cc
+Testing 19_diagnostics/stdexcept.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019417 -2019417
+pid is -1
+output is  status 0
+Testing cerrno/macros.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019421 -2019421
+pid is -1
+output is  status 0
+Testing requirements/explicit_instantiation.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019425 -2019425
+pid is -1
+output is  status 0
+spawning command ./equal.exe 
+pid is -1
+output is  status 0
+Testing system_error/what-1.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+exp11 file8
+pid is 2019436 -2019436
+Testing operators/less.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019440 -2019440
+pid is -1
+output is  status 0
+spawning command ./what-1.exe 
+exp11 file8
+Testing logic_error/what-2.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019451 -2019451
+pid is -1
+close result is 2019398 exp8 0 1
+output is In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/ios_base.h:46,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/streambuf:43,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h:35,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/iterator:66,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/stdc++.h:54,
+                 from <command-line>:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error: In instantiation of 'std::error_condition::error_condition(_ErrorConditionEnum) [with _ErrorConditionEnum = user::E1; <template-parameter-1-2> = void]':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/19_diagnostics/error_condition/cons/lwg3629.cc:40:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error:375: error: use of deleted function 'void std::__adl_only::make_error_condition()'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error:203: note: declared here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error:375: error: use of deleted function 'void std::__adl_only::make_error_condition()'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error:203: note: declared here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error: In instantiation of 'std::error_condition::error_condition(_ErrorConditionEnum) [with _ErrorConditionEnum = user::E2; <template-parameter-1-2> = void]':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/19_diagnostics/error_condition/cons/lwg3629.cc:43:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error:375: error: use of deleted function 'void std::__adl_only::make_error_condition()'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error:203: note: declared here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error:375: error: use of deleted function 'void std::__adl_only::make_error_condition()'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error:203: note: declared here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error: In instantiation of 'std::error_condition::error_condition(_ErrorConditionEnum) [with _ErrorConditionEnum = user::E3; <template-parameter-1-2> = void]':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/19_diagnostics/error_condition/cons/lwg3629.cc:46:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error:375: error: use of deleted function 'void std::__adl_only::make_error_condition()'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error:203: note: declared here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error:375: error: use of deleted function 'void std::__adl_only::make_error_condition()'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error:203: note: declared here
+ status 1
+compiler exited with status 1
+Testing error_condition/hash.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019455 -2019455
+pid is -1
+output is  status 0
+spawning command ./39882.exe 
+exp11 file8
+Testing operators/bool.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019466 -2019466
+pid is -1
+output is  status 0
+Testing stdexcept/synopsis.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019470 -2019470
+pid is -1
+output is  status 0
+spawning command ./stdexcept.exe 
+exp11 file8
+Testing system_error/39880.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019481 -2019481
+pid is -1
+output is  status 0
+Testing add_cv/value.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019485 -2019485
+pid is -1
+output is  status 0
+spawning command ./less.exe 
+exp11 file8
+Testing operators/not_equal.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019496 -2019496
+pid is -1
+output is  status 0
+spawning command ./what-1.exe 
+exp11 file8
+Testing system_error/what-2.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019512 -2019512
+pid is -1
+output is  status 0
+spawning command ./what-2.exe 
+exp11 file8
+Testing logic_error/what-3.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019518 -2019518
+pid is -1
+output is  status 0
+spawning command ./hash.exe 
+exp11 file8
+Testing modifiers/39881.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019529 -2019529
+pid is -1
+output is  status 0
+spawning command ./bool.exe 
+exp11 file8
+Testing operators/bool_neg.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019540 -2019540
+pid is -1
+output is  status 0
+Testing stdexcept/types_std.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019544 -2019544
+pid is -1
+output is  status 0
+Testing system_error/cons-1.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019548 -2019548
+pid is -1
+output is  status 0
+Testing requirements/alias_decl.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019552 -2019552
+pid is -1
+output is  status 0
+spawning command ./not_equal.exe 
+exp11 file8
+Testing operators/three_way.cc
+extra_tool_flags are:  -std=gnu++2a
+doing compile
+pid is -1
+output is  status 0
+spawning command ./what-3.exe 
+pid is 2019573 -2019573
+exp11 file8
+Testing logic_error/what-big.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019579 -2019579
+pid is -1
+output is  status 0
+spawning command ./what-2.exe 
+exp11 file8
+Testing system_error/what-3.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019585 -2019585
+pid is -1
+output is  status 0
+spawning command ./39881.exe 
+exp11 file8
+Testing operators/bool.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019596 -2019596
+pid is -1
+close result is 2019540 exp8 0 1
+output is /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/19_diagnostics/error_code/operators/bool_neg.cc: In function 'int main()':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/19_diagnostics/error_code/operators/bool_neg.cc:27: error: cannot convert 'std::error_code' to 'int' in initialization
+ status 1
+compiler exited with status 1
+Testing operators/equal.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019600 -2019600
+pid is -1
+output is  status 0
+Testing system_error/34538.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019606 -2019606
+pid is -1
+output is  status 0
+spawning command ./three_way.exe 
+exp11 file8
+Testing error_category/system_category.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019615 -2019615
+pid is -1
+output is  status 0
+Testing requirements/explicit_instantiation.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019623 -2019623
+pid is -1
+output is  status 0
+spawning command ./cons-1.exe 
+exp11 file8
+Testing requirements/explicit_instantiation.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019630 -2019630
+pid is -1
+output is  status 0
+spawning command ./what-big.exe 
+exp11 file8
+Testing runtime_error/cons_virtual_derivation.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019641 -2019641
+pid is -1
+output is  status 0
+spawning command ./what-3.exe 
+exp11 file8
+Testing system_error/what-4.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019652 -2019652
+pid is -1
+output is  status 0
+spawning command ./equal.exe 
+pid is -1
+exp11 file8
+output is  status 0
+Testing operators/less.cc
+spawning command ./bool.exe 
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+exp11 file8
+Testing operators/bool_neg.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019670 -2019670
+pid is 2019673 -2019673
+pid is -1
+output is  status 0
+Testing system_error/93151.cc
+extra_tool_flags are:  -D__GLIBCXX__=99999999
+doing compile
+pid is 2019678 -2019678
+pid is -1
+output is  status 0
+spawning command ./system_category.exe 
+exp11 file8
+Testing align/3.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019689 -2019689
+pid is -1
+output is  status 0
+Testing system_error/errc_std_c++0x.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019693 -2019693
+pid is -1
+output is  status 0
+Testing add_lvalue_reference/value.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019697 -2019697
+pid is -1
+output is  status 0
+Testing add_rvalue_reference/value.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019701 -2019701
+pid is -1
+output is  status 0
+spawning command ./cons_virtual_derivation.exe 
+exp11 file8
+Testing runtime_error/what-1.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019712 -2019712
+pid is -1
+close result is 2019673 exp8 0 1
+output is /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/19_diagnostics/error_condition/operators/bool_neg.cc: In function 'int test01()':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/19_diagnostics/error_condition/operators/bool_neg.cc:26: error: cannot convert 'std::error_condition' to 'int' in initialization
+ status 1
+compiler exited with status 1
+Testing operators/equal.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019716 -2019716
+pid is -1
+output is  status 0
+spawning command ./what-4.exe 
+exp11 file8
+Testing system_error/what-big.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019727 -2019727
+pid is -1
+output is  status 0
+spawning command ./less.exe 
+exp11 file8
+Testing alignment_of/value.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019738 -2019738
+pid is -1
+output is  status 0
+spawning command ./3.exe 
+exp11 file8
+Testing aligned_storage/deprecated-2b.cc
+extra_tool_flags are:  -std=gnu++23
+doing compile
+pid is 2019749 -2019749
+pid is -1
+output is /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/aligned_storage/deprecated-2b.cc:23: warning: 'template<long unsigned int _Len, long unsigned int _Align> struct std::aligned_storage' is deprecated [-Wdeprecated-declarations]
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/aligned_storage/deprecated-2b.cc:21:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/type_traits:2106: note: declared here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/aligned_storage/deprecated-2b.cc:24: warning: 'using std::aligned_storage_t = union std::aligned_storage<1, 1>::type' is deprecated [-Wdeprecated-declarations]
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/type_traits:2605: note: declared here
+ status 0
+Testing requirements/alias_decl.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019753 -2019753
+pid is -1
+output is  status 0
+Testing allocator/overaligned.cc
+doing compile
+pid is 2019757 -2019757
+pid is -1
+output is  status 0
+doing compile
+pid is 2019761 -2019761
+pid is -1
+output is  status 0
+extra_tool_flags are:  -faligned-new
+doing compile
+pid is 2019765 -2019765
+pid is -1
+output is  status 0
+Testing requirements/alias_decl.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019769 -2019769
+pid is -1
+output is  status 0
+Testing requirements/alias_decl.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019773 -2019773
+pid is -1
+output is  status 0
+spawning command ./overaligned.exe 
+exp11 file8
+Testing allocator/rebind_c++20.cc
+extra_tool_flags are:  -std=gnu++2a
+doing compile
+pid is 2019784 -2019784
+pid is -1
+output is  status 0
+Testing requirements/constexpr.cc
+extra_tool_flags are:  -std=gnu++20
+doing compile
+pid is 2019788 -2019788
+pid is -1
+output is  status 0
+spawning command ./what-1.exe 
+exp11 file8
+Testing runtime_error/what-2.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019799 -2019799
+pid is -1
+output is  status 0
+spawning command ./equal.exe 
+exp11 file8
+Testing members/allocate_hint.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019810 -2019810
+pid is -1
+output is  status 0
+Testing allocator/1.cc
+doing compile
+pid is 2019814 -2019814
+pid is -1
+output is  status 0
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019818 -2019818
+pid is -1
+output is  status 0
+Testing explicit_instantiation/1.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019827 -2019827
+pid is -1
+output is  status 0
+spawning command ./what-big.exe 
+exp11 file8
+Testing requirements/alias_decl.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019833 -2019833
+pid is -1
+output is  status 0
+Testing requirements/explicit_instantiation.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019837 -2019837
+pid is -1
+output is  status 0
+Testing requirements/explicit_instantiation.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019841 -2019841
+pid is -1
+output is  status 0
+Testing requirements/explicit_instantiation.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019845 -2019845
+pid is -1
+output is  status 0
+spawning command ./what-2.exe 
+exp11 file8
+Testing requirements/rebind_neg.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019856 -2019856
+pid is -1
+output is  status 0
+spawning command ./allocate_hint.exe 
+exp11 file8
+Testing members/allocate_hint_nonpod.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019867 -2019867
+pid is -1
+output is  status 0
+Testing requirements/typedefs.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019876 -2019876
+pid is -1
+output is  status 0
+spawning command ./1.exe 
+pid is -1
+output is  status 0
+Testing requirements/explicit_instantiation.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+exp11 file8
+Testing allocator/10378.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019882 -2019882
+pid is 2019885 -2019885
+pid is -1
+output is  status 0
+Testing aligned_storage/value.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019890 -2019890
+pid is -1
+output is  status 0
+Testing add_volatile/value.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019894 -2019894
+pid is -1
+output is  status 0
+Testing add_pointer/value.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019898 -2019898
+pid is -1
+close result is 2019856 exp8 0 1
+output is In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/ext/alloc_traits.h:34,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/basic_string.h:39,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/string:54,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bitset:52,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/stdc++.h:52,
+                 from <command-line>:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/alloc_traits.h: In instantiation of 'struct std::__allocator_traits_base::__rebind<Alloc<int>, int, void>':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/alloc_traits.h:94:   required by substitution of 'template<class _Alloc, class _Up> using std::__alloc_rebind = typename std::__allocator_traits_base::__rebind<_Alloc, _Up>::type [with _Alloc = Alloc<int>; _Up = int]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/alloc_traits.h:228:   required by substitution of 'template<class _Alloc> template<class _Tp> using std::allocator_traits< <template-parameter-1-1> >::rebind_alloc = std::__alloc_rebind<_Alloc, _Tp> [with _Tp = int; _Alloc = Alloc<int>]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/ext/alloc_traits.h:126:   required from 'struct __gnu_cxx::__alloc_traits<Alloc<int>, int>::rebind<int>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_vector.h:88:   required from 'struct std::_Vector_base<int, Alloc<int> >'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_vector.h:423:   required from 'class std::vector<int, Alloc<int> >'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/allocator_traits/requirements/rebind_neg.cc:7:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/alloc_traits.h:70: error: static assertion failed: allocator_traits<A>::rebind_alloc<A::value_type> must be A
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/alloc_traits.h:70: note: 'std::integral_constant<bool, false>::value' evaluates to false
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/alloc_traits.h: In instantiation of 'struct std::__allocator_traits_base::__rebind<Alloc2<int>, int, void>':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/alloc_traits.h:94:   required by substitution of 'template<class _Alloc, class _Up> using std::__alloc_rebind = typename std::__allocator_traits_base::__rebind<_Alloc, _Up>::type [with _Alloc = Alloc2<int>; _Up = int]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/alloc_traits.h:228:   required by substitution of 'template<class _Alloc> template<class _Tp> using std::allocator_traits< <template-parameter-1-1> >::rebind_alloc = std::__alloc_rebind<_Alloc, _Tp> [with _Tp = int; _Alloc = Alloc2<int>]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/ext/alloc_traits.h:126:   required from 'struct __gnu_cxx::__alloc_traits<Alloc2<int>, int>::rebind<int>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_vector.h:88:   required from 'struct std::_Vector_base<int, Alloc2<int> >'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_vector.h:423:   required from 'class std::vector<int, Alloc2<int> >'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/allocator_traits/requirements/rebind_neg.cc:18:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/alloc_traits.h:70: error: static assertion failed: allocator_traits<A>::rebind_alloc<A::value_type> must be A
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/alloc_traits.h:70: note: 'std::integral_constant<bool, false>::value' evaluates to false
+ status 1
+compiler exited with status 1
+Testing requirements/typedefs.cc
+doing compile
+pid is 2019902 -2019902
+pid is -1
+output is  status 0
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019906 -2019906
+pid is -1
+output is  status 0
+spawning command ./allocate_hint_nonpod.exe 
+exp11 file8
+Testing members/construct.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019917 -2019917
+pid is -1
+output is  status 0
+Testing requirements/typedefs_c++20.cc
+extra_tool_flags are:  -std=gnu++20
+doing compile
+pid is 2019921 -2019921
+pid is -1
+output is  status 0
+Testing add_const/value.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019925 -2019925
+pid is -1
+output is  status 0
+spawning command ./10378.exe 
+exp11 file8
+Testing allocator/105975.cc
+doing compile
+pid is 2019936 -2019936
+pid is -1
+output is  status 0
+extra_tool_flags are:  -std=gnu++20
+doing compile
+pid is 2019940 -2019940
+pid is -1
+output is  status 0
+Testing aligned_union/1.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019944 -2019944
+pid is -1
+output is  status 0
+Testing addressof/1.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019948 -2019948
+pid is -1
+output is  status 0
+Testing allocator/void.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019952 -2019952
+pid is -1
+output is  status 0
+Testing requirements/alias_decl.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019956 -2019956
+pid is -1
+close result is 2019940 exp8 0 1
+output is In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/memory:65,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/allocator/105975.cc:7:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/allocator/105975.cc:17:   in 'constexpr' expansion of 'test_pr105957()'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/allocator/105975.cc:13:   in 'constexpr' expansion of 'a.std::allocator<long long int>::allocate(n)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/allocator.h:194: error: call to non-'constexpr' function 'void std::__throw_bad_array_new_length()'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/new_allocator.h:35,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/c++allocator.h:33,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/allocator.h:46:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/functexcept.h:56: note: 'void std::__throw_bad_array_new_length()' declared here
+ status 1
+compiler exited with status 1
+Testing allocator/14176.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019960 -2019960
+pid is -1
+output is  status 0
+Testing requirements/typedefs2.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019964 -2019964
+pid is -1
+output is  status 0
+spawning command ./construct.exe 
+exp11 file8
+Testing members/destroy.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019975 -2019975
+pid is -1
+output is  status 0
+Testing cons/1.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019979 -2019979
+pid is -1
+output is  status 0
+Testing aligned_union/deprecated-2b.cc
+extra_tool_flags are:  -std=gnu++23
+doing compile
+pid is 2019983 -2019983
+pid is -1
+output is /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/aligned_union/deprecated-2b.cc:23: warning: 'template<long unsigned int _Len, class ... _Types> struct std::aligned_union' is deprecated [-Wdeprecated-declarations]
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/aligned_union/deprecated-2b.cc:21:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/type_traits:2151: note: declared here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/aligned_union/deprecated-2b.cc:24: warning: 'using std::aligned_union_t = std::aligned_union<4, int>::type' is deprecated [-Wdeprecated-declarations]
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/type_traits:2608: note: declared here
+ status 0
+Testing requirements/alias_decl.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019987 -2019987
+pid is -1
+output is  status 0
+spawning command ./1.exe 
+exp11 file8
+Testing requirements/constexpr.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2019998 -2019998
+pid is -1
+output is  status 0
+spawning command ./void.exe 
+exp11 file8
+Testing allocator_traits/header-2.cc
+extra_tool_flags are:  -std=gnu++20
+doing compile
+pid is 2020010 -2020010
+pid is -1
+output is  status 0
+Testing allocator_traits/header.cc
+extra_tool_flags are:  -std=gnu++20
+doing compile
+pid is 2020014 -2020014
+pid is -1
+output is  status 0
+Testing cons/nontrivial.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020018 -2020018
+pid is -1
+output is  status 0
+spawning command ./14176.exe 
+exp11 file8
+Testing allocator/33807.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020029 -2020029
+pid is -1
+output is  status 0
+Testing members/92878_92947.cc
+extra_tool_flags are:  -std=gnu++20
+doing compile
+pid is 2020033 -2020033
+pid is -1
+output is  status 0
+Testing any/102894.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020037 -2020037
+pid is -1
+output is  status 0
+spawning command ./destroy.exe 
+exp11 file8
+Testing members/is_always_equal.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020048 -2020048
+pid is -1
+output is  status 0
+spawning command ./1.exe 
+exp11 file8
+Testing cons/101034.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020059 -2020059
+pid is -1
+output is  status 0
+spawning command ./92878_92947.exe 
+exp11 file8
+Testing any/requirements.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020070 -2020070
+pid is -1
+output is  status 0
+Testing requirements/explicit_instantiation.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020074 -2020074
+pid is -1
+output is  status 0
+Testing requirements/explicit_instantiation.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020078 -2020078
+pid is -1
+output is  status 0
+spawning command ./nontrivial.exe 
+exp11 file8
+Testing any/make_any.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020089 -2020089
+pid is -1
+output is  status 0
+Testing allocator/64135.cc
+extra_tool_flags are:  -D__GLIBCXX__=99999999
+doing compile
+pid is 2020093 -2020093
+pid is -1
+output is  status 0
+Testing allocator/8230.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020097 -2020097
+pid is -1
+output is  status 0
+Testing assign/1.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020101 -2020101
+pid is -1
+output is  status 0
+Testing members/max_size.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020105 -2020105
+pid is -1
+output is  status 0
+Testing cons/104242.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020109 -2020109
+pid is -1
+output is  status 0
+Testing any/typedefs.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020113 -2020113
+pid is -1
+output is  status 0
+Testing requirements/typedefs.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020117 -2020117
+pid is -1
+output is  status 0
+Testing align/1.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020121 -2020121
+pid is -1
+output is  status 0
+spawning command ./make_any.exe 
+exp11 file8
+Testing misc/any_cast.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020132 -2020132
+pid is -1
+output is  status 0
+spawning command ./8230.exe 
+exp11 file8
+Testing allocator/89510.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020143 -2020143
+pid is -1
+output is  status 0
+spawning command ./1.exe 
+exp11 file8
+Testing assign/2.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020156 -2020156
+pid is -1
+output is  status 0
+spawning command ./max_size.exe 
+exp11 file8
+Testing members/pointers.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020165 -2020165
+pid is -1
+output is  status 0
+Testing cons/2.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020169 -2020169
+pid is -1
+output is  status 0
+Testing as_const/1.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020173 -2020173
+pid is -1
+output is  status 0
+Testing auto_ptr/3.cc
+extra_tool_flags are:  -std=c++98
+doing compile
+pid is 2020177 -2020177
+pid is -1
+output is  status 0
+spawning command ./3.exe 
+exp11 file8
+Testing auto_ptr/3946.cc
+extra_tool_flags are:  -std=c++98
+doing compile
+pid is 2020188 -2020188
+pid is -1
+output is  status 0
+spawning command ./3946.exe 
+exp11 file8
+Testing auto_ptr/4.cc
+extra_tool_flags are:  -std=c++98
+doing compile
+pid is 2020199 -2020199
+pid is -1
+output is  status 0
+spawning command ./1.exe 
+exp11 file8
+Testing align/2.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020210 -2020210
+pid is -1
+output is  status 0
+spawning command ./4.exe 
+exp11 file8
+Testing auto_ptr/5.cc
+extra_tool_flags are:  -std=c++98
+doing compile
+pid is 2020221 -2020221
+pid is -1
+output is  status 0
+spawning command ./5.exe 
+exp11 file8
+Testing auto_ptr/6.cc
+extra_tool_flags are:  -std=c++98
+doing compile
+pid is 2020232 -2020232
+pid is -1
+output is  status 0
+spawning command ./6.exe 
+exp11 file8
+Testing auto_ptr/7.cc
+extra_tool_flags are:  -std=c++98
+doing compile
+pid is 2020243 -2020243
+pid is -1
+output is  status 0
+spawning command ./7.exe 
+exp11 file8
+Testing auto_ptr/assign_neg.cc
+extra_tool_flags are:  -std=c++98
+doing compile
+pid is 2020254 -2020254
+pid is -1
+close result is 2020254 exp8 0 1
+output is /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/auto_ptr/assign_neg.cc: In function 'int test01()':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/auto_ptr/assign_neg.cc:40: error: no match for 'operator=' in 'ptr2 = (Base*)operator new(1)' (operand types are 'std::auto_ptr<Base>' and 'Base*')
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/memory:86,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/auto_ptr/assign_neg.cc:24:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/backward/auto_ptr.h:142: note: candidate: 'std::auto_ptr<_Tp>& std::auto_ptr<_Tp>::operator=(std::auto_ptr<_Tp>&) [with _Tp = Base]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/backward/auto_ptr.h:142: note:   no known conversion for argument 1 from 'Base*' to 'std::auto_ptr<Base>&'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/backward/auto_ptr.h:160: note: candidate: 'template<class _Tp1> std::auto_ptr<_Tp>& std::auto_ptr<_Tp>::operator=(std::auto_ptr<_Tp1>&) [with _Tp = Base]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/backward/auto_ptr.h:160: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/auto_ptr/assign_neg.cc:40: note:   mismatched types 'std::auto_ptr<_Tp1>' and 'Base*'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/backward/auto_ptr.h:274: note: candidate: 'std::auto_ptr<_Tp>& std::auto_ptr<_Tp>::operator=(std::auto_ptr_ref<_Tp>) [with _Tp = Base]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/backward/auto_ptr.h:274: note:   no known conversion for argument 1 from 'Base*' to 'std::auto_ptr_ref<Base>'
+ status 1
+compiler exited with status 1
+Testing explicit_instantiation/1.cc
+extra_tool_flags are:  -std=c++98
+doing compile
+pid is 2020258 -2020258
+pid is -1
+output is  status 0
+Testing allocator/lwg3190.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020262 -2020262
+pid is -1
+output is  status 0
+Testing bad_function_call/cons_virtual_derivation.cc
+doing compile
+pid is 2020266 -2020266
+pid is -1
+output is  status 0
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020270 -2020270
+pid is -1
+output is  status 0
+spawning command ./any_cast.exe 
+exp11 file8
+Testing misc/any_cast_neg.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020281 -2020281
+pid is -1
+output is  status 0
+Testing as_const/rvalue_neg.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020285 -2020285
+pid is -1
+output is  status 0
+Testing members/rebind_alloc.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020289 -2020289
+pid is -1
+output is  status 0
+spawning command ./2.exe 
+exp11 file8
+Testing assign/92878_92947.cc
+extra_tool_flags are:  -std=gnu++2a
+doing compile
+pid is 2020300 -2020300
+pid is -1
+output is  status 0
+spawning command ./2.exe 
+exp11 file8
+Testing cons/90415.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020311 -2020311
+pid is -1
+output is  status 0
+spawning command ./92878_92947.exe 
+exp11 file8
+Testing assign/emplace.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020322 -2020322
+pid is -1
+output is  status 0
+spawning command ./2.exe 
+exp11 file8
+Testing bind/35569.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020333 -2020333
+pid is -1
+output is  status 0
+spawning command ./lwg3190.exe 
+exp11 file8
+Testing bind/79798.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020349 -2020349
+pid is -1
+output is  status 0
+spawning command ./cons_virtual_derivation.exe 
+exp11 file8
+Testing bad_function_call/what.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020355 -2020355
+pid is -1
+close result is 2020281 exp8 0 1
+output is In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/stdc++.h:77,
+                 from <command-line>:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/any: In instantiation of '_ValueType std::any_cast(const any&) [with _ValueType = int&]':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/any/misc/any_cast_neg.cc:28:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/any:466: error: static assertion failed: Template argument must be constructible from a const value.
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/any:466: note: 'std::is_constructible_v<int&, const int&>' evaluates to false
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/any:470: error: invalid 'static_cast' from type 'const int' to type 'int&'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/any: In instantiation of '_ValueType std::any_cast(any&) [with _ValueType = int&&]':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/any/misc/any_cast_neg.cc:35:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/any:492: error: static assertion failed: Template argument must be constructible from an lvalue.
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/any:492: note: 'std::is_constructible_v<int&&, int&>' evaluates to false
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/any: In instantiation of '_ValueType std::any_cast(any&&) [with _ValueType = int&]':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/any/misc/any_cast_neg.cc:42:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/any:506: error: static assertion failed: Template argument must be constructible from an rvalue.
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/any:506: note: 'std::is_constructible_v<int&, int>' evaluates to false
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/any:510: error: invalid 'static_cast' from type 'std::remove_reference<int&>::type' {aka 'int'} to type 'int&'
+ status 1
+compiler exited with status 1
+Testing misc/any_cast_no_rtti.cc
+extra_tool_flags are:  -fno-rtti
+doing compile
+pid is 2020359 -2020359
+pid is -1
+close result is 2020285 exp8 0 1
+output is /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/as_const/rvalue_neg.cc: In function 'void test01()':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/as_const/rvalue_neg.cc:25: error: use of deleted function 'void std::as_const(const _Tp&&) [with _Tp = int]'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/stdc++.h:60,
+                 from <command-line>:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/utility:112: note: declared here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/as_const/rvalue_neg.cc:26: error: use of deleted function 'void std::as_const(const _Tp&&) [with _Tp = int]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/utility:112: note: declared here
+ status 1
+compiler exited with status 1
+Testing assume_aligned/1.cc
+extra_tool_flags are:  -std=gnu++2a -O2
+doing compile
+pid is 2020363 -2020363
+pid is -1
+output is  status 0
+Testing members/select.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020367 -2020367
+pid is -1
+output is  status 0
+spawning command ./any_cast_no_rtti.exe 
+exp11 file8
+Testing misc/swap.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020383 -2020383
+pid is -1
+output is  status 0
+spawning command ./90415.exe 
+exp11 file8
+Testing cons/92156.cc
+extra_tool_flags are:  -Wno-init-list-lifetime
+doing compile
+pid is 2020389 -2020389
+pid is -1
+output is  status 0
+spawning command ./92156.exe 
+exp11 file8
+Testing cons/92878_92947.cc
+extra_tool_flags are:  -std=gnu++2a
+doing compile
+pid is 2020410 -2020410
+pid is -1
+output is  status 0
+spawning command ./emplace.exe 
+exp11 file8
+Testing assign/exception.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is -1
+output is  status 0
+pid is 2020416 -2020416
+spawning command ./1.exe 
+exp11 file8
+Testing assume_aligned/2_neg.cc
+extra_tool_flags are:  -std=gnu++2a
+doing compile
+pid is 2020422 -2020422
+pid is -1
+output is  status 0
+Testing bind/38889.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020431 -2020431
+pid is -1
+output is  status 0
+spawning command ./92878_92947.exe 
+exp11 file8
+Testing cons/aligned.cc
+doing compile
+pid is 2020437 -2020437
+pid is -1
+output is  status 0
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020441 -2020441
+pid is -1
+output is  status 0
+Testing bind/83427.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020445 -2020445
+pid is -1
+close result is 2020422 exp8 0 1
+output is /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/assume_aligned/2_neg.cc: In function 'void test01()':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/assume_aligned/2_neg.cc:27: warning: ignoring return value of 'constexpr _Tp* std::assume_aligned(_Tp*) [with long unsigned int _Align = 2; _Tp = int]', declared with attribute 'nodiscard' [-Wunused-result]
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/memory:74,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/assume_aligned/2_neg.cc:21:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/align.h:93: note: declared here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/align.h: In instantiation of 'constexpr _Tp* std::assume_aligned(_Tp*) [with long unsigned int _Align = 3; _Tp = int]':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/assume_aligned/2_neg.cc:28:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/align.h:95: error: static assertion failed
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/align.h:95: note: 'std::has_single_bit<long unsigned int>(3)' evaluates to false
+ status 1
+compiler exited with status 1
+Testing assume_aligned/3.cc
+extra_tool_flags are:  -std=gnu++2a -O2 -g0
+doing compile
+pid is 2020449 -2020449
+pid is -1
+output is  status 0
+spawning command ./what.exe 
+exp11 file8
+Testing bind/is_placeholder_v.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020460 -2020460
+pid is -1
+output is  status 0
+spawning command ./select.exe 
+exp11 file8
+Testing requirements/explicit_instantiation.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020471 -2020471
+pid is -1
+output is  status 0
+Testing assume_aligned/97132.cc
+extra_tool_flags are:  -std=gnu++2a
+doing compile
+pid is 2020475 -2020475
+pid is -1
+output is  status 0
+spawning command ./swap.exe 
+exp11 file8
+Testing modifiers/1.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020486 -2020486
+pid is -1
+output is  status 0
+Testing auto_ptr/1.cc
+extra_tool_flags are:  -std=c++98
+doing compile
+pid is 2020495 -2020495
+pid is -1
+output is  status 0
+spawning command ./exception.exe 
+exp11 file8
+Testing assign/self.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020501 -2020501
+pid is -1
+output is  status 0
+Testing bind/42593.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020505 -2020505
+pid is -1
+output is  status 0
+spawning command ./1.exe 
+exp11 file8
+Testing auto_ptr/2.cc
+extra_tool_flags are:  -std=c++98
+doing compile
+pid is 2020521 -2020521
+pid is -1
+output is  status 0
+spawning command ./aligned.exe 
+exp11 file8
+Testing cons/explicit.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020527 -2020527
+pid is -1
+output is  status 0
+spawning command ./2.exe 
+exp11 file8
+Testing bitset/18604.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020538 -2020538
+pid is -1
+output is  status 0
+Testing bind/91371.cc
+check_compile tool: libstdc++ for x32
+doing compile
+pid is 2020542 -2020542
+pid is -1
+close result is 2020542 exp8 0 1
+output is x322014830.c:4: error: narrowing conversion of '-1' from 'int' to 'long unsigned int' [-Wnarrowing]
+x322014830.c:4: error: size '-1' of array 'dummy' is negative
+ status 1
+compiler exited with status 1
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020546 -2020546
+pid is -1
+output is  status 0
+Testing bind/move.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020550 -2020550
+pid is -1
+output is  status 0
+Testing cons/3.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020554 -2020554
+pid is -1
+output is  status 0
+spawning command ./1.exe 
+exp11 file8
+Testing modifiers/83658.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020565 -2020565
+pid is -1
+output is  status 0
+Testing bind/45924.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020569 -2020569
+pid is -1
+close result is 2020527 exp8 0 1
+output is /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/any/cons/explicit.cc: In function 'int main()':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/any/cons/explicit.cc:26: error: converting to 'std::any' from initializer list would use explicit constructor 'std::any::any(std::in_place_type_t<_Tp>, _Args&& ...) [with _Tp = int; _Args = {int}; _VTp = int; _Mgr = _Manager_internal<int>; typename __any_constructible<bool, _VTp, _Args&& ...>::type <anonymous> = false]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/any/cons/explicit.cc:28: error: converting to 'std::any' from initializer list would use explicit constructor 'std::any::any(std::in_place_type_t<_Tp>, std::initializer_list<_Value>, _Args&& ...) [with _Tp = std::vector<int>; _Up = int; _Args = {}; _VTp = std::vector<int>; _Mgr = _Manager_external<std::vector<int> >; typename __any_constructible<bool, _VTp, std::initializer_list<_Value>&, _Args&& ...>::type <anonymous> = false]'
+ status 1
+compiler exited with status 1
+Testing cons/in_place.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020573 -2020573
+pid is -1
+output is  status 0
+Testing bitset/45713.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020583 -2020583
+pid is -1
+output is  status 0
+spawning command ./self.exe 
+exp11 file8
+Testing invalidation/1.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020589 -2020589
+pid is -1
+output is  status 0
+Testing bind/all_bound.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020595 -2020595
+pid is -1
+output is  status 0
+spawning command ./move.exe 
+exp11 file8
+Testing bind/nested.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020604 -2020604
+pid is -1
+output is  status 0
+spawning command ./3.exe 
+exp11 file8
+Testing cons/38244.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020615 -2020615
+pid is -1
+output is  status 0
+spawning command ./83658.exe 
+exp11 file8
+Testing modifiers/92156.cc
+extra_tool_flags are:  -Wno-init-list-lifetime
+doing compile
+pid is 2020626 -2020626
+pid is -1
+output is  status 0
+Testing bind/48698.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020635 -2020635
+pid is -1
+output is  status 0
+spawning command ./92156.exe 
+exp11 file8
+Testing observers/type.cc
+doing compile
+pid is 2020641 -2020641
+pid is -1
+output is  status 0
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020645 -2020645
+pid is -1
+output is  status 0
+Testing access/constexpr.cc
+extra_tool_flags are:  -std=gnu++23
+doing compile
+pid is 2020649 -2020649
+pid is -1
+output is  status 0
+spawning command ./in_place.exe 
+exp11 file8
+Testing operations/2.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020665 -2020665
+pid is -1
+output is  status 0
+spawning command ./1.exe 
+exp11 file8
+Testing ext/15361.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020671 -2020671
+pid is -1
+output is  status 0
+Testing access/dr396.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020675 -2020675
+pid is -1
+output is  status 0
+spawning command ./all_bound.exe 
+exp11 file8
+Testing bind/constexpr.cc
+extra_tool_flags are:  -std=gnu++2a
+doing compile
+pid is 2020686 -2020686
+pid is -1
+output is  status 0
+spawning command ./nested.exe 
+exp11 file8
+Testing bind/placeholders.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020697 -2020697
+pid is -1
+output is  status 0
+Testing cons/50268.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020701 -2020701
+pid is -1
+output is  status 0
+Testing bind/conv_result.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020705 -2020705
+pid is -1
+output is  status 0
+Testing bind/49058_1.cc
+extra_tool_flags are:  -pedantic
+doing compile
+pid is 2020709 -2020709
+pid is -1
+output is  status 0
+spawning command ./type.exe 
+exp11 file8
+Testing common_reference/100894.cc
+extra_tool_flags are:  -std=gnu++20
+doing compile
+pid is 2020720 -2020720
+pid is -1
+output is  status 0
+Testing requirements/alias_decl.cc
+extra_tool_flags are:  -std=gnu++2a
+doing compile
+pid is 2020724 -2020724
+pid is -1
+output is  status 0
+Testing bind/49058_2.cc
+extra_tool_flags are:  -pedantic
+doing compile
+pid is 2020728 -2020728
+pid is -1
+output is  status 0
+Testing requirements/explicit_instantiation.cc
+extra_tool_flags are:  -std=gnu++2a
+doing compile
+pid is 2020732 -2020732
+pid is -1
+output is  status 0
+Testing requirements/typedefs.cc
+extra_tool_flags are:  -std=gnu++2a
+doing compile
+pid is 2020736 -2020736
+pid is -1
+output is  status 0
+spawning command ./2.exe 
+exp11 file8
+Testing operations/96303.cc
+doing compile
+pid is -1
+output is  status 0
+Testing requirements/alias_decl.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020747 -2020747
+pid is 2020750 -2020750
+pid is -1
+output is  status 0
+extra_tool_flags are:  -std=gnu++2a -pedantic
+doing compile
+pid is 2020760 -2020760
+pid is -1
+output is  status 0
+spawning command ./15361.exe 
+exp11 file8
+Testing ext/constexpr.cc
+extra_tool_flags are:  -std=gnu++23
+doing compile
+pid is 2020766 -2020766
+pid is -1
+output is  status 0
+Testing bind/57899.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020770 -2020770
+pid is -1
+output is  status 0
+spawning command ./dr396.exe 
+exp11 file8
+Testing access/to_string.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020781 -2020781
+pid is -1
+output is  status 0
+Testing operations/constexpr-2.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020785 -2020785
+pid is -1
+output is  status 0
+Testing hash/1.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020789 -2020789
+pid is -1
+output is  status 0
+spawning command ./placeholders.exe 
+exp11 file8
+Testing bind/ref.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020800 -2020800
+pid is -1
+output is  status 0
+spawning command ./50268.exe 
+exp11 file8
+Testing cons/6282.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020811 -2020811
+pid is -1
+output is  status 0
+spawning command ./conv_result.exe 
+exp11 file8
+Testing bind/cv_quals.cc
+extra_tool_flags are:  -Wdeprecated-declarations
+doing compile
+pid is 2020822 -2020822
+pid is -1
+output is In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/bind/cv_quals.cc:24:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/bind/cv_quals.cc: In function 'void test01()':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/bind/cv_quals.cc:54: warning: '_Result std::_Bind<_Functor(_Bound_args ...)>::operator()(_Args&& ...) volatile [with _Args = {}; _Result = int; _Functor = X; _Bound_args = {}]' is deprecated: std::bind does not support volatile in C++17 [-Wdeprecated-declarations]
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/util/testsuite_hooks.h:64: note: in definition of macro 'VERIFY'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/bind/cv_quals.cc:23:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:614: note: declared here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/bind/cv_quals.cc:57: warning: '_Result std::_Bind<_Functor(_Bound_args ...)>::operator()(_Args&& ...) const volatile [with _Args = {}; _Result = int; _Functor = X; _Bound_args = {}]' is deprecated: std::bind does not support volatile in C++17 [-Wdeprecated-declarations]
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/util/testsuite_hooks.h:64: note: in definition of macro 'VERIFY'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:626: note: declared here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/bind/cv_quals.cc: In function 'void test02()':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/bind/cv_quals.cc:71: warning: 'std::_Bind_result<_Result, _Functor(_Bound_args ...)>::result_type std::_Bind_result<_Result, _Functor(_Bound_args ...)>::operator()(_Args&& ...) volatile [with _Args = {}; _Result = int; _Functor = X; _Bound_args = {}; result_type = int]' is deprecated: std::bind does not support volatile in C++17 [-Wdeprecated-declarations]
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/util/testsuite_hooks.h:64: note: in definition of macro 'VERIFY'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:734: note: declared here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/bind/cv_quals.cc:74: warning: 'std::_Bind_result<_Result, _Functor(_Bound_args ...)>::result_type std::_Bind_result<_Result, _Functor(_Bound_args ...)>::operator()(_Args&& ...) const volatile [with _Args = {}; _Result = int; _Functor = X; _Bound_args = {}; result_type = int]' is deprecated: std::bind does not support volatile in C++17 [-Wdeprecated-declarations]
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/util/testsuite_hooks.h:64: note: in definition of macro 'VERIFY'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:745: note: declared here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/bind/cv_quals.cc: In function 'void test03()':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/bind/cv_quals.cc:88: warning: '_Result std::_Bind<_Functor(_Bound_args ...)>::operator()(_Args&& ...) volatile [with _Args = {int, int}; _Result = int; _Functor = X; _Bound_args = {std::_Placeholder<1>, std::_Placeholder<2>, int}]' is deprecated: std::bind does not support volatile in C++17 [-Wdeprecated-declarations]
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/util/testsuite_hooks.h:64: note: in definition of macro 'VERIFY'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:614: note: declared here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/bind/cv_quals.cc:91: warning: '_Result std::_Bind<_Functor(_Bound_args ...)>::operator()(_Args&& ...) const volatile [with _Args = {int, int}; _Result = int; _Functor = X; _Bound_args = {std::_Placeholder<1>, int, std::_Placeholder<2>}]' is deprecated: std::bind does not support volatile in C++17 [-Wdeprecated-declarations]
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/util/testsuite_hooks.h:64: note: in definition of macro 'VERIFY'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:626: note: declared here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/bind/cv_quals.cc: In function 'void test04()':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/bind/cv_quals.cc:105: warning: 'std::_Bind_result<_Result, _Functor(_Bound_args ...)>::result_type std::_Bind_result<_Result, _Functor(_Bound_args ...)>::operator()(_Args&& ...) volatile [with _Args = {int, int}; _Result = int; _Functor = X; _Bound_args = {std::_Placeholder<1>, std::_Placeholder<2>, int}; result_type = int]' is deprecated: std::bind does not support volatile in C++17 [-Wdeprecated-declarations]
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/util/testsuite_hooks.h:64: note: in definition of macro 'VERIFY'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:734: note: declared here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/bind/cv_quals.cc:108: warning: 'std::_Bind_result<_Result, _Functor(_Bound_args ...)>::result_type std::_Bind_result<_Result, _Functor(_Bound_args ...)>::operator()(_Args&& ...) const volatile [with _Args = {int, int}; _Result = int; _Functor = X; _Bound_args = {std::_Placeholder<1>, int, std::_Placeholder<2>}; result_type = int]' is deprecated: std::bind does not support volatile in C++17 [-Wdeprecated-declarations]
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/util/testsuite_hooks.h:64: note: in definition of macro 'VERIFY'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:745: note: declared here
+ status 0
+spawning command ./cv_quals.exe 
+exp11 file8
+Testing bind/cv_quals_2.cc
+extra_tool_flags are:  -Wdeprecated-declarations
+doing compile
+pid is 2020833 -2020833
+pid is -1
+output is  status 0
+Testing requirements/explicit_instantiation.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020837 -2020837
+pid is -1
+output is In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/bind/cv_quals_2.cc:23:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/bind/cv_quals_2.cc: In function 'void test01()':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/bind/cv_quals_2.cc:39: warning: '_Result std::_Bind<_Functor(_Bound_args ...)>::operator()(_Args&& ...) volatile [with _Args = {}; _Result = int; _Functor = X; _Bound_args = {}]' is deprecated: std::bind does not support volatile in C++17 [-Wdeprecated-declarations]
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/util/testsuite_hooks.h:64: note: in definition of macro 'VERIFY'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/bind/cv_quals_2.cc:22:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:614: note: declared here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/bind/cv_quals_2.cc:43: warning: '_Result std::_Bind<_Functor(_Bound_args ...)>::operator()(_Args&& ...) const volatile [with _Args = {}; _Result = int; _Functor = X; _Bound_args = {}]' is deprecated: std::bind does not support volatile in C++17 [-Wdeprecated-declarations]
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/util/testsuite_hooks.h:64: note: in definition of macro 'VERIFY'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:626: note: declared here
+ status 0
+spawning command ./cv_quals_2.exe 
+exp11 file8
+Testing bind/cv_quals_3.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020848 -2020848
+pid is -1
+output is  status 0
+Testing bind/60497.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020852 -2020852
+pid is -1
+output is  status 0
+Testing operations/constexpr.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020856 -2020856
+pid is -1
+output is  status 0
+pid is -1
+output is  status 0
+spawning command ./1.exe 
+spawning command ./to_string.exe 
+exp11 file8
+Testing io/input.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+exp11 file8
+Testing access/to_ullong.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020874 -2020874
+pid is 2020877 -2020877
+pid is -1
+output is  status 0
+spawning command ./ref.exe 
+exp11 file8
+Testing bind/ref2.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020894 -2020894
+pid is -1
+output is  status 0
+spawning command ./6282.exe 
+exp11 file8
+Testing cons/constexpr.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020900 -2020900
+pid is -1
+output is  status 0
+Testing requirements/sfinae_friendly_1.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020904 -2020904
+pid is -1
+output is  status 0
+Testing bind/dangling_ref.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020909 -2020909
+pid is -1
+output is  status 0
+Testing bind/68912.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020913 -2020913
+pid is -1
+output is  status 0
+Testing operations/constexpr_c++23.cc
+extra_tool_flags are:  -std=gnu++23
+doing compile
+pid is 2020917 -2020917
+pid is -1
+output is  status 0
+spawning command ./to_ullong.exe 
+exp11 file8
+Testing access/to_ulong.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020928 -2020928
+pid is -1
+output is  status 0
+Testing requirements/constexpr_functions.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020934 -2020934
+pid is -1
+output is  status 0
+Testing cons/constexpr_c++23.cc
+extra_tool_flags are:  -std=gnu++23
+doing compile
+pid is 2020941 -2020941
+pid is -1
+output is  status 0
+spawning command ./ref2.exe 
+exp11 file8
+Testing bind/ref_neg.cc
+extra_tool_flags are:  -fno-show-column
+doing compile
+pid is 2020947 -2020947
+pid is -1
+output is  status 0
+spawning command ./input.exe 
+exp11 file8
+Testing observers/6124.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020958 -2020958
+pid is -1
+close result is 2020947 exp8 0 1
+output is /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/bind/ref_neg.cc: In function 'void test01()':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/bind/ref_neg.cc:32: error: no match for call to '(std::_Bind_helper<false, int (*)(int&), const std::_Placeholder<1>&>::type) (int)'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/bind/ref_neg.cc:23:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:589: note: candidate: 'template<class ... _Args, class _Result> _Result std::_Bind<_Functor(_Bound_args ...)>::operator()(_Args&& ...) [with _Args = {_Args ...}; _Functor = int (*)(int&); _Bound_args = {std::_Placeholder<1>}]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:589: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional: In substitution of 'template<class _Functor, class ... _Bound_args> template<class _Fn, class _CallArgs, class ... _BArgs> using std::_Bind<_Functor(_Bound_args ...)>::_Res_type_impl = typename std::result_of<_Fn&(decltype (std::_Mu<typename std::remove_cv<_BArgs>::type, std::is_bind_expression<typename std::remove_cv<_BArgs>::type>::value, (std::is_placeholder<typename std::remove_cv<_BArgs>::type>::value > 0)>()(declval<_BArgs&>(), declval<_CallArgs&>()))&& ...)>::type [with _Fn = int (*)(int&); _CallArgs = std::tuple<int>; _BArgs = {std::_Placeholder<1>}; _Functor = int (*)(int&); _Bound_args = {std::_Placeholder<1>}]':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:556:   required by substitution of 'template<class _Functor, class ... _Bound_args> template<class _CallArgs> using std::_Bind<_Functor(_Bound_args ...)>::_Res_type = std::_Bind<_Functor(_Bound_args ...)>::_Res_type_impl<_Functor, _CallArgs, _Bound_args ...> [with _CallArgs = std::tuple<int>; _Functor = int (*)(int&); _Bound_args = {std::_Placeholder<1>}]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:586:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:552: error: no type named 'type' in 'struct std::result_of<int (*&(int&&))(int&)>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:601: note: candidate: 'template<class ... _Args, class _Result> _Result std::_Bind<_Functor(_Bound_args ...)>::operator()(_Args&& ...) const [with _Args = {_Args ...}; _Functor = int (*)(int&); _Bound_args = {std::_Placeholder<1>}]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:601: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional: In substitution of 'template<class _Functor, class ... _Bound_args> template<class _Fn, class _CallArgs, class ... _BArgs> using std::_Bind<_Functor(_Bound_args ...)>::_Res_type_impl = typename std::result_of<_Fn&(decltype (std::_Mu<typename std::remove_cv<_BArgs>::type, std::is_bind_expression<typename std::remove_cv<_BArgs>::type>::value, (std::is_placeholder<typename std::remove_cv<_BArgs>::type>::value > 0)>()(declval<_BArgs&>(), declval<_CallArgs&>()))&& ...)>::type [with _Fn = int (* const)(int&); _CallArgs = std::tuple<int>; _BArgs = {const std::_Placeholder<1>}; _Functor = int (*)(int&); _Bound_args = {std::_Placeholder<1>}]':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:563:   required by substitution of 'template<class _Functor, class ... _Bound_args> template<class _CallArgs, template<class _CallArgs, template<class> class __cv_quals> template<class _Functor, class ... _Bound_args> template<class> class __cv_quals> using std::_Bind<_Functor(_Bound_args ...)>::_Res_type_cv = std::_Bind<_Functor(_Bound_args ...)>::_Res_type_impl<typename __cv_quals<typename std::enable_if<(bool)((std::tuple_size<_Tuple>::value + 1)), _Functor>::type>::type, _CallArgs, typename __cv_quals<_Bound_args>::type ...> [with _CallArgs = std::tuple<int>; __cv_quals = std::add_const; _Functor = int (*)(int&); _Bound_args = {std::_Placeholder<1>}]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:598:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:552: error: no type named 'type' in 'struct std::result_of<int (* const&(int&&))(int&)>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:614: note: candidate: 'template<class ... _Args, class _Result> _Result std::_Bind<_Functor(_Bound_args ...)>::operator()(_Args&& ...) volatile [with _Args = {_Args ...}; _Functor = int (*)(int&); _Bound_args = {std::_Placeholder<1>}]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:614: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional: In substitution of 'template<class _Functor, class ... _Bound_args> template<class _Fn, class _CallArgs, class ... _BArgs> using std::_Bind<_Functor(_Bound_args ...)>::_Res_type_impl = typename std::result_of<_Fn&(decltype (std::_Mu<typename std::remove_cv<_BArgs>::type, std::is_bind_expression<typename std::remove_cv<_BArgs>::type>::value, (std::is_placeholder<typename std::remove_cv<_BArgs>::type>::value > 0)>()(declval<_BArgs&>(), declval<_CallArgs&>()))&& ...)>::type [with _Fn = int (* volatile)(int&); _CallArgs = std::tuple<int>; _BArgs = {volatile std::_Placeholder<1>}; _Functor = int (*)(int&); _Bound_args = {std::_Placeholder<1>}]':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:563:   required by substitution of 'template<class _Functor, class ... _Bound_args> template<class _CallArgs, template<class _CallArgs, template<class> class __cv_quals> template<class _Functor, class ... _Bound_args> template<class> class __cv_quals> using std::_Bind<_Functor(_Bound_args ...)>::_Res_type_cv = std::_Bind<_Functor(_Bound_args ...)>::_Res_type_impl<typename __cv_quals<typename std::enable_if<(bool)((std::tuple_size<_Tuple>::value + 1)), _Functor>::type>::type, _CallArgs, typename __cv_quals<_Bound_args>::type ...> [with _CallArgs = std::tuple<int>; __cv_quals = std::add_volatile; _Functor = int (*)(int&); _Bound_args = {std::_Placeholder<1>}]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:611:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:552: error: no type named 'type' in 'struct std::result_of<int (* volatile&(int&&))(int&)>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:626: note: candidate: 'template<class ... _Args, class _Result> _Result std::_Bind<_Functor(_Bound_args ...)>::operator()(_Args&& ...) const volatile [with _Args = {_Args ...}; _Functor = int (*)(int&); _Bound_args = {std::_Placeholder<1>}]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:626: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional: In substitution of 'template<class _Functor, class ... _Bound_args> template<class _Fn, class _CallArgs, class ... _BArgs> using std::_Bind<_Functor(_Bound_args ...)>::_Res_type_impl = typename std::result_of<_Fn&(decltype (std::_Mu<typename std::remove_cv<_BArgs>::type, std::is_bind_expression<typename std::remove_cv<_BArgs>::type>::value, (std::is_placeholder<typename std::remove_cv<_BArgs>::type>::value > 0)>()(declval<_BArgs&>(), declval<_CallArgs&>()))&& ...)>::type [with _Fn = int (* const volatile)(int&); _CallArgs = std::tuple<int>; _BArgs = {const volatile std::_Placeholder<1>}; _Functor = int (*)(int&); _Bound_args = {std::_Placeholder<1>}]':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:563:   required by substitution of 'template<class _Functor, class ... _Bound_args> template<class _CallArgs, template<class _CallArgs, template<class> class __cv_quals> template<class _Functor, class ... _Bound_args> template<class> class __cv_quals> using std::_Bind<_Functor(_Bound_args ...)>::_Res_type_cv = std::_Bind<_Functor(_Bound_args ...)>::_Res_type_impl<typename __cv_quals<typename std::enable_if<(bool)((std::tuple_size<_Tuple>::value + 1)), _Functor>::type>::type, _CallArgs, typename __cv_quals<_Bound_args>::type ...> [with _CallArgs = std::tuple<int>; __cv_quals = std::add_cv; _Functor = int (*)(int&); _Bound_args = {std::_Placeholder<1>}]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:623:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:552: error: no type named 'type' in 'struct std::result_of<int (* const volatile&(int&&))(int&)>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/bind/ref_neg.cc:33: error: no match for call to '(std::_Bind_helper<false, int (*)(int&), std::reference_wrapper<const int> >::type) ()'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:589: note: candidate: 'template<class ... _Args, class _Result> _Result std::_Bind<_Functor(_Bound_args ...)>::operator()(_Args&& ...) [with _Args = {_Args ...}; _Functor = int (*)(int&); _Bound_args = {std::reference_wrapper<const int>}]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:589: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional: In substitution of 'template<class _Functor, class ... _Bound_args> template<class _Fn, class _CallArgs, class ... _BArgs> using std::_Bind<_Functor(_Bound_args ...)>::_Res_type_impl = typename std::result_of<_Fn&(decltype (std::_Mu<typename std::remove_cv<_BArgs>::type, std::is_bind_expression<typename std::remove_cv<_BArgs>::type>::value, (std::is_placeholder<typename std::remove_cv<_BArgs>::type>::value > 0)>()(declval<_BArgs&>(), declval<_CallArgs&>()))&& ...)>::type [with _Fn = int (*)(int&); _CallArgs = std::tuple<>; _BArgs = {std::reference_wrapper<const int>}; _Functor = int (*)(int&); _Bound_args = {std::reference_wrapper<const int>}]':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:556:   required by substitution of 'template<class _Functor, class ... _Bound_args> template<class _CallArgs> using std::_Bind<_Functor(_Bound_args ...)>::_Res_type = std::_Bind<_Functor(_Bound_args ...)>::_Res_type_impl<_Functor, _CallArgs, _Bound_args ...> [with _CallArgs = std::tuple<>; _Functor = int (*)(int&); _Bound_args = {std::reference_wrapper<const int>}]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:586:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:552: error: no type named 'type' in 'struct std::result_of<int (*&(const int&))(int&)>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:601: note: candidate: 'template<class ... _Args, class _Result> _Result std::_Bind<_Functor(_Bound_args ...)>::operator()(_Args&& ...) const [with _Args = {_Args ...}; _Functor = int (*)(int&); _Bound_args = {std::reference_wrapper<const int>}]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:601: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional: In substitution of 'template<class _Functor, class ... _Bound_args> template<class _Fn, class _CallArgs, class ... _BArgs> using std::_Bind<_Functor(_Bound_args ...)>::_Res_type_impl = typename std::result_of<_Fn&(decltype (std::_Mu<typename std::remove_cv<_BArgs>::type, std::is_bind_expression<typename std::remove_cv<_BArgs>::type>::value, (std::is_placeholder<typename std::remove_cv<_BArgs>::type>::value > 0)>()(declval<_BArgs&>(), declval<_CallArgs&>()))&& ...)>::type [with _Fn = int (* const)(int&); _CallArgs = std::tuple<>; _BArgs = {const std::reference_wrapper<const int>}; _Functor = int (*)(int&); _Bound_args = {std::reference_wrapper<const int>}]':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:563:   required by substitution of 'template<class _Functor, class ... _Bound_args> template<class _CallArgs, template<class _CallArgs, template<class> class __cv_quals> template<class _Functor, class ... _Bound_args> template<class> class __cv_quals> using std::_Bind<_Functor(_Bound_args ...)>::_Res_type_cv = std::_Bind<_Functor(_Bound_args ...)>::_Res_type_impl<typename __cv_quals<typename std::enable_if<(bool)((std::tuple_size<_Tuple>::value + 1)), _Functor>::type>::type, _CallArgs, typename __cv_quals<_Bound_args>::type ...> [with _CallArgs = std::tuple<>; __cv_quals = std::add_const; _Functor = int (*)(int&); _Bound_args = {std::reference_wrapper<const int>}]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:598:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:552: error: no type named 'type' in 'struct std::result_of<int (* const&(const int&))(int&)>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:614: note: candidate: 'template<class ... _Args, class _Result> _Result std::_Bind<_Functor(_Bound_args ...)>::operator()(_Args&& ...) volatile [with _Args = {_Args ...}; _Functor = int (*)(int&); _Bound_args = {std::reference_wrapper<const int>}]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:614: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional: In substitution of 'template<class _Functor, class ... _Bound_args> template<class _Fn, class _CallArgs, class ... _BArgs> using std::_Bind<_Functor(_Bound_args ...)>::_Res_type_impl = typename std::result_of<_Fn&(decltype (std::_Mu<typename std::remove_cv<_BArgs>::type, std::is_bind_expression<typename std::remove_cv<_BArgs>::type>::value, (std::is_placeholder<typename std::remove_cv<_BArgs>::type>::value > 0)>()(declval<_BArgs&>(), declval<_CallArgs&>()))&& ...)>::type [with _Fn = int (* volatile)(int&); _CallArgs = std::tuple<>; _BArgs = {volatile std::reference_wrapper<const int>}; _Functor = int (*)(int&); _Bound_args = {std::reference_wrapper<const int>}]':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:563:   required by substitution of 'template<class _Functor, class ... _Bound_args> template<class _CallArgs, template<class _CallArgs, template<class> class __cv_quals> template<class _Functor, class ... _Bound_args> template<class> class __cv_quals> using std::_Bind<_Functor(_Bound_args ...)>::_Res_type_cv = std::_Bind<_Functor(_Bound_args ...)>::_Res_type_impl<typename __cv_quals<typename std::enable_if<(bool)((std::tuple_size<_Tuple>::value + 1)), _Functor>::type>::type, _CallArgs, typename __cv_quals<_Bound_args>::type ...> [with _CallArgs = std::tuple<>; __cv_quals = std::add_volatile; _Functor = int (*)(int&); _Bound_args = {std::reference_wrapper<const int>}]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:611:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:552: error: no type named 'type' in 'struct std::result_of<int (* volatile&(const int&))(int&)>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:626: note: candidate: 'template<class ... _Args, class _Result> _Result std::_Bind<_Functor(_Bound_args ...)>::operator()(_Args&& ...) const volatile [with _Args = {_Args ...}; _Functor = int (*)(int&); _Bound_args = {std::reference_wrapper<const int>}]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:626: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional: In substitution of 'template<class _Functor, class ... _Bound_args> template<class _Fn, class _CallArgs, class ... _BArgs> using std::_Bind<_Functor(_Bound_args ...)>::_Res_type_impl = typename std::result_of<_Fn&(decltype (std::_Mu<typename std::remove_cv<_BArgs>::type, std::is_bind_expression<typename std::remove_cv<_BArgs>::type>::value, (std::is_placeholder<typename std::remove_cv<_BArgs>::type>::value > 0)>()(declval<_BArgs&>(), declval<_CallArgs&>()))&& ...)>::type [with _Fn = int (* const volatile)(int&); _CallArgs = std::tuple<>; _BArgs = {const volatile std::reference_wrapper<const int>}; _Functor = int (*)(int&); _Bound_args = {std::reference_wrapper<const int>}]':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:563:   required by substitution of 'template<class _Functor, class ... _Bound_args> template<class _CallArgs, template<class _CallArgs, template<class> class __cv_quals> template<class _Functor, class ... _Bound_args> template<class> class __cv_quals> using std::_Bind<_Functor(_Bound_args ...)>::_Res_type_cv = std::_Bind<_Functor(_Bound_args ...)>::_Res_type_impl<typename __cv_quals<typename std::enable_if<(bool)((std::tuple_size<_Tuple>::value + 1)), _Functor>::type>::type, _CallArgs, typename __cv_quals<_Bound_args>::type ...> [with _CallArgs = std::tuple<>; __cv_quals = std::add_cv; _Functor = int (*)(int&); _Bound_args = {std::reference_wrapper<const int>}]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:623:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:552: error: no type named 'type' in 'struct std::result_of<int (* const volatile&(const int&))(int&)>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/bind/ref_neg.cc: In function 'void test02()':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/bind/ref_neg.cc:47: error: no match for call to '(std::_Bind_helper<false, Inc, const std::_Placeholder<1>&>::type) (const int&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:589: note: candidate: 'template<class ... _Args, class _Result> _Result std::_Bind<_Functor(_Bound_args ...)>::operator()(_Args&& ...) [with _Args = {_Args ...}; _Functor = Inc; _Bound_args = {std::_Placeholder<1>}]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:589: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional: In substitution of 'template<class _Functor, class ... _Bound_args> template<class _Fn, class _CallArgs, class ... _BArgs> using std::_Bind<_Functor(_Bound_args ...)>::_Res_type_impl = typename std::result_of<_Fn&(decltype (std::_Mu<typename std::remove_cv<_BArgs>::type, std::is_bind_expression<typename std::remove_cv<_BArgs>::type>::value, (std::is_placeholder<typename std::remove_cv<_BArgs>::type>::value > 0)>()(declval<_BArgs&>(), declval<_CallArgs&>()))&& ...)>::type [with _Fn = Inc; _CallArgs = std::tuple<const int&>; _BArgs = {std::_Placeholder<1>}; _Functor = Inc; _Bound_args = {std::_Placeholder<1>}]':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:556:   required by substitution of 'template<class _Functor, class ... _Bound_args> template<class _CallArgs> using std::_Bind<_Functor(_Bound_args ...)>::_Res_type = std::_Bind<_Functor(_Bound_args ...)>::_Res_type_impl<_Functor, _CallArgs, _Bound_args ...> [with _CallArgs = std::tuple<const int&>; _Functor = Inc; _Bound_args = {std::_Placeholder<1>}]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:586:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:552: error: no type named 'type' in 'struct std::result_of<Inc&(const int&)>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:601: note: candidate: 'template<class ... _Args, class _Result> _Result std::_Bind<_Functor(_Bound_args ...)>::operator()(_Args&& ...) const [with _Args = {_Args ...}; _Functor = Inc; _Bound_args = {std::_Placeholder<1>}]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:601: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional: In substitution of 'template<class _Functor, class ... _Bound_args> template<class _Fn, class _CallArgs, class ... _BArgs> using std::_Bind<_Functor(_Bound_args ...)>::_Res_type_impl = typename std::result_of<_Fn&(decltype (std::_Mu<typename std::remove_cv<_BArgs>::type, std::is_bind_expression<typename std::remove_cv<_BArgs>::type>::value, (std::is_placeholder<typename std::remove_cv<_BArgs>::type>::value > 0)>()(declval<_BArgs&>(), declval<_CallArgs&>()))&& ...)>::type [with _Fn = const Inc; _CallArgs = std::tuple<const int&>; _BArgs = {const std::_Placeholder<1>}; _Functor = Inc; _Bound_args = {std::_Placeholder<1>}]':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:563:   required by substitution of 'template<class _Functor, class ... _Bound_args> template<class _CallArgs, template<class _CallArgs, template<class> class __cv_quals> template<class _Functor, class ... _Bound_args> template<class> class __cv_quals> using std::_Bind<_Functor(_Bound_args ...)>::_Res_type_cv = std::_Bind<_Functor(_Bound_args ...)>::_Res_type_impl<typename __cv_quals<typename std::enable_if<(bool)((std::tuple_size<_Tuple>::value + 1)), _Functor>::type>::type, _CallArgs, typename __cv_quals<_Bound_args>::type ...> [with _CallArgs = std::tuple<const int&>; __cv_quals = std::add_const; _Functor = Inc; _Bound_args = {std::_Placeholder<1>}]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:598:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:552: error: no type named 'type' in 'struct std::result_of<const Inc&(const int&)>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:614: note: candidate: 'template<class ... _Args, class _Result> _Result std::_Bind<_Functor(_Bound_args ...)>::operator()(_Args&& ...) volatile [with _Args = {_Args ...}; _Functor = Inc; _Bound_args = {std::_Placeholder<1>}]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:614: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional: In substitution of 'template<class _Functor, class ... _Bound_args> template<class _Fn, class _CallArgs, class ... _BArgs> using std::_Bind<_Functor(_Bound_args ...)>::_Res_type_impl = typename std::result_of<_Fn&(decltype (std::_Mu<typename std::remove_cv<_BArgs>::type, std::is_bind_expression<typename std::remove_cv<_BArgs>::type>::value, (std::is_placeholder<typename std::remove_cv<_BArgs>::type>::value > 0)>()(declval<_BArgs&>(), declval<_CallArgs&>()))&& ...)>::type [with _Fn = volatile Inc; _CallArgs = std::tuple<const int&>; _BArgs = {volatile std::_Placeholder<1>}; _Functor = Inc; _Bound_args = {std::_Placeholder<1>}]':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:563:   required by substitution of 'template<class _Functor, class ... _Bound_args> template<class _CallArgs, template<class _CallArgs, template<class> class __cv_quals> template<class _Functor, class ... _Bound_args> template<class> class __cv_quals> using std::_Bind<_Functor(_Bound_args ...)>::_Res_type_cv = std::_Bind<_Functor(_Bound_args ...)>::_Res_type_impl<typename __cv_quals<typename std::enable_if<(bool)((std::tuple_size<_Tuple>::value + 1)), _Functor>::type>::type, _CallArgs, typename __cv_quals<_Bound_args>::type ...> [with _CallArgs = std::tuple<const int&>; __cv_quals = std::add_volatile; _Functor = Inc; _Bound_args = {std::_Placeholder<1>}]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:611:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:552: error: no type named 'type' in 'struct std::result_of<volatile Inc&(const int&)>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:626: note: candidate: 'template<class ... _Args, class _Result> _Result std::_Bind<_Functor(_Bound_args ...)>::operator()(_Args&& ...) const volatile [with _Args = {_Args ...}; _Functor = Inc; _Bound_args = {std::_Placeholder<1>}]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:626: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional: In substitution of 'template<class _Functor, class ... _Bound_args> template<class _Fn, class _CallArgs, class ... _BArgs> using std::_Bind<_Functor(_Bound_args ...)>::_Res_type_impl = typename std::result_of<_Fn&(decltype (std::_Mu<typename std::remove_cv<_BArgs>::type, std::is_bind_expression<typename std::remove_cv<_BArgs>::type>::value, (std::is_placeholder<typename std::remove_cv<_BArgs>::type>::value > 0)>()(declval<_BArgs&>(), declval<_CallArgs&>()))&& ...)>::type [with _Fn = const volatile Inc; _CallArgs = std::tuple<const int&>; _BArgs = {const volatile std::_Placeholder<1>}; _Functor = Inc; _Bound_args = {std::_Placeholder<1>}]':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:563:   required by substitution of 'template<class _Functor, class ... _Bound_args> template<class _CallArgs, template<class _CallArgs, template<class> class __cv_quals> template<class _Functor, class ... _Bound_args> template<class> class __cv_quals> using std::_Bind<_Functor(_Bound_args ...)>::_Res_type_cv = std::_Bind<_Functor(_Bound_args ...)>::_Res_type_impl<typename __cv_quals<typename std::enable_if<(bool)((std::tuple_size<_Tuple>::value + 1)), _Functor>::type>::type, _CallArgs, typename __cv_quals<_Bound_args>::type ...> [with _CallArgs = std::tuple<const int&>; __cv_quals = std::add_cv; _Functor = Inc; _Bound_args = {std::_Placeholder<1>}]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:623:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:552: error: no type named 'type' in 'struct std::result_of<const volatile Inc&(const int&)>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/bind/ref_neg.cc:48: error: no match for call to '(std::_Bind_helper<false, int (Inc::*)(int&&) const, Inc, std::reference_wrapper<const int> >::type) ()'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:589: note: candidate: 'template<class ... _Args, class _Result> _Result std::_Bind<_Functor(_Bound_args ...)>::operator()(_Args&& ...) [with _Args = {_Args ...}; _Functor = int (Inc::*)(int&&) const; _Bound_args = {Inc, std::reference_wrapper<const int>}]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:589: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional: In substitution of 'template<class _Functor, class ... _Bound_args> template<class _Fn, class _CallArgs, class ... _BArgs> using std::_Bind<_Functor(_Bound_args ...)>::_Res_type_impl = typename std::result_of<_Fn&(decltype (std::_Mu<typename std::remove_cv<_BArgs>::type, std::is_bind_expression<typename std::remove_cv<_BArgs>::type>::value, (std::is_placeholder<typename std::remove_cv<_BArgs>::type>::value > 0)>()(declval<_BArgs&>(), declval<_CallArgs&>()))&& ...)>::type [with _Fn = int (Inc::*)(int&&) const; _CallArgs = std::tuple<>; _BArgs = {Inc, std::reference_wrapper<const int>}; _Functor = int (Inc::*)(int&&) const; _Bound_args = {Inc, std::reference_wrapper<const int>}]':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:556:   required by substitution of 'template<class _Functor, class ... _Bound_args> template<class _CallArgs> using std::_Bind<_Functor(_Bound_args ...)>::_Res_type = std::_Bind<_Functor(_Bound_args ...)>::_Res_type_impl<_Functor, _CallArgs, _Bound_args ...> [with _CallArgs = std::tuple<>; _Functor = int (Inc::*)(int&&) const; _Bound_args = {Inc, std::reference_wrapper<const int>}]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:586:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:552: error: no type named 'type' in 'struct std::result_of<int (Inc::*&(Inc&, const int&))(int&&) const>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:601: note: candidate: 'template<class ... _Args, class _Result> _Result std::_Bind<_Functor(_Bound_args ...)>::operator()(_Args&& ...) const [with _Args = {_Args ...}; _Functor = int (Inc::*)(int&&) const; _Bound_args = {Inc, std::reference_wrapper<const int>}]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:601: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional: In substitution of 'template<class _Functor, class ... _Bound_args> template<class _Fn, class _CallArgs, class ... _BArgs> using std::_Bind<_Functor(_Bound_args ...)>::_Res_type_impl = typename std::result_of<_Fn&(decltype (std::_Mu<typename std::remove_cv<_BArgs>::type, std::is_bind_expression<typename std::remove_cv<_BArgs>::type>::value, (std::is_placeholder<typename std::remove_cv<_BArgs>::type>::value > 0)>()(declval<_BArgs&>(), declval<_CallArgs&>()))&& ...)>::type [with _Fn = int (Inc::* const)(int&&) const; _CallArgs = std::tuple<>; _BArgs = {const Inc, const std::reference_wrapper<const int>}; _Functor = int (Inc::*)(int&&) const; _Bound_args = {Inc, std::reference_wrapper<const int>}]':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:563:   required by substitution of 'template<class _Functor, class ... _Bound_args> template<class _CallArgs, template<class _CallArgs, template<class> class __cv_quals> template<class _Functor, class ... _Bound_args> template<class> class __cv_quals> using std::_Bind<_Functor(_Bound_args ...)>::_Res_type_cv = std::_Bind<_Functor(_Bound_args ...)>::_Res_type_impl<typename __cv_quals<typename std::enable_if<(bool)((std::tuple_size<_Tuple>::value + 1)), _Functor>::type>::type, _CallArgs, typename __cv_quals<_Bound_args>::type ...> [with _CallArgs = std::tuple<>; __cv_quals = std::add_const; _Functor = int (Inc::*)(int&&) const; _Bound_args = {Inc, std::reference_wrapper<const int>}]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:598:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:552: error: no type named 'type' in 'struct std::result_of<int (Inc::* const&(const Inc&, const int&))(int&&) const>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:614: note: candidate: 'template<class ... _Args, class _Result> _Result std::_Bind<_Functor(_Bound_args ...)>::operator()(_Args&& ...) volatile [with _Args = {_Args ...}; _Functor = int (Inc::*)(int&&) const; _Bound_args = {Inc, std::reference_wrapper<const int>}]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:614: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional: In substitution of 'template<class _Functor, class ... _Bound_args> template<class _Fn, class _CallArgs, class ... _BArgs> using std::_Bind<_Functor(_Bound_args ...)>::_Res_type_impl = typename std::result_of<_Fn&(decltype (std::_Mu<typename std::remove_cv<_BArgs>::type, std::is_bind_expression<typename std::remove_cv<_BArgs>::type>::value, (std::is_placeholder<typename std::remove_cv<_BArgs>::type>::value > 0)>()(declval<_BArgs&>(), declval<_CallArgs&>()))&& ...)>::type [with _Fn = int (Inc::* volatile)(int&&) const; _CallArgs = std::tuple<>; _BArgs = {volatile Inc, volatile std::reference_wrapper<const int>}; _Functor = int (Inc::*)(int&&) const; _Bound_args = {Inc, std::reference_wrapper<const int>}]':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:563:   required by substitution of 'template<class _Functor, class ... _Bound_args> template<class _CallArgs, template<class _CallArgs, template<class> class __cv_quals> template<class _Functor, class ... _Bound_args> template<class> class __cv_quals> using std::_Bind<_Functor(_Bound_args ...)>::_Res_type_cv = std::_Bind<_Functor(_Bound_args ...)>::_Res_type_impl<typename __cv_quals<typename std::enable_if<(bool)((std::tuple_size<_Tuple>::value + 1)), _Functor>::type>::type, _CallArgs, typename __cv_quals<_Bound_args>::type ...> [with _CallArgs = std::tuple<>; __cv_quals = std::add_volatile; _Functor = int (Inc::*)(int&&) const; _Bound_args = {Inc, std::reference_wrapper<const int>}]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:611:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:552: error: no type named 'type' in 'struct std::result_of<int (Inc::* volatile&(volatile Inc&, const int&))(int&&) const>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:626: note: candidate: 'template<class ... _Args, class _Result> _Result std::_Bind<_Functor(_Bound_args ...)>::operator()(_Args&& ...) const volatile [with _Args = {_Args ...}; _Functor = int (Inc::*)(int&&) const; _Bound_args = {Inc, std::reference_wrapper<const int>}]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:626: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional: In substitution of 'template<class _Functor, class ... _Bound_args> template<class _Fn, class _CallArgs, class ... _BArgs> using std::_Bind<_Functor(_Bound_args ...)>::_Res_type_impl = typename std::result_of<_Fn&(decltype (std::_Mu<typename std::remove_cv<_BArgs>::type, std::is_bind_expression<typename std::remove_cv<_BArgs>::type>::value, (std::is_placeholder<typename std::remove_cv<_BArgs>::type>::value > 0)>()(declval<_BArgs&>(), declval<_CallArgs&>()))&& ...)>::type [with _Fn = int (Inc::* const volatile)(int&&) const; _CallArgs = std::tuple<>; _BArgs = {const volatile Inc, const volatile std::reference_wrapper<const int>}; _Functor = int (Inc::*)(int&&) const; _Bound_args = {Inc, std::reference_wrapper<const int>}]':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:563:   required by substitution of 'template<class _Functor, class ... _Bound_args> template<class _CallArgs, template<class _CallArgs, template<class> class __cv_quals> template<class _Functor, class ... _Bound_args> template<class> class __cv_quals> using std::_Bind<_Functor(_Bound_args ...)>::_Res_type_cv = std::_Bind<_Functor(_Bound_args ...)>::_Res_type_impl<typename __cv_quals<typename std::enable_if<(bool)((std::tuple_size<_Tuple>::value + 1)), _Functor>::type>::type, _CallArgs, typename __cv_quals<_Bound_args>::type ...> [with _CallArgs = std::tuple<>; __cv_quals = std::add_cv; _Functor = int (Inc::*)(int&&) const; _Bound_args = {Inc, std::reference_wrapper<const int>}]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:623:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:552: error: no type named 'type' in 'struct std::result_of<int (Inc::* const volatile&(const volatile Inc&, const int&))(int&&) const>'
+ status 1
+compiler exited with status 1
+Testing bind/refqual.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020962 -2020962
+pid is -1
+output is  status 0
+Testing cons/dr1325-1.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020966 -2020966
+pid is -1
+output is  status 0
+Testing requirements/sfinae_friendly_2.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020970 -2020970
+pid is -1
+close result is 2020909 exp8 0 1
+output is In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/stdc++.h:53,
+                 from <command-line>:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional: In instantiation of '_Res std::_Bind_result<_Result, _Functor(_Bound_args ...)>::__call(std::tuple<_Args2 ...>&&, std::_Index_tuple<_Indexes ...>) [with _Res = const int&; _Args = {}; long unsigned int ..._Indexes = {}; _Result = const int&; _Functor = int (*)(); _Bound_args = {}]':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:713:   required from 'std::_Bind_result<_Result, _Functor(_Bound_args ...)>::result_type std::_Bind_result<_Result, _Functor(_Bound_args ...)>::operator()(_Args&& ...) [with _Args = {}; _Result = const int&; _Functor = int (*)(); _Bound_args = {}; result_type = const int&]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/bind/dangling_ref.cc:6:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:654: error: no matching function for call to '__invoke_r<const int&>(int (*&)())'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/refwrap.h:38,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/string:52,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bitset:52,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/stdc++.h:52:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/invoke.h:104: note: candidate: 'template<class _Res, class _Callable, class ... _Args> constexpr std::enable_if_t<is_invocable_r_v<_Res, _Callable, _Args ...>, _Res> std::__invoke_r(_Callable&&, _Args&& ...)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/invoke.h:104: note:   template argument deduction/substitution failed:
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_pair.h:60,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_algobase.h:64,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/algorithm:60,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/stdc++.h:51:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/type_traits: In substitution of 'template<bool _Cond, class _Tp> using std::enable_if_t = typename std::enable_if::type [with bool _Cond = false; _Tp = const int&]':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/invoke.h:104:   required by substitution of 'template<class _Res, class _Callable, class ... _Args> constexpr std::enable_if_t<is_invocable_r_v<_Res, _Callable, _Args ...>, _Res> std::__invoke_r(_Callable&&, _Args&& ...) [with _Res = const int&; _Callable = int (*&)(); _Args = {}]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:654:   required from '_Res std::_Bind_result<_Result, _Functor(_Bound_args ...)>::__call(std::tuple<_Args2 ...>&&, std::_Index_tuple<_Indexes ...>) [with _Res = const int&; _Args = {}; long unsigned int ..._Indexes = {}; _Result = const int&; _Functor = int (*)(); _Bound_args = {}]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:713:   required from 'std::_Bind_result<_Result, _Functor(_Bound_args ...)>::result_type std::_Bind_result<_Result, _Functor(_Bound_args ...)>::operator()(_Args&& ...) [with _Args = {}; _Result = const int&; _Functor = int (*)(); _Bound_args = {}; result_type = const int&]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/bind/dangling_ref.cc:6:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/type_traits:2617: error: no type named 'type' in 'struct std::enable_if<false, const int&>'
+ status 1
+compiler exited with status 1
+Testing requirements/alias_decl.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020974 -2020974
+pid is -1
+output is  status 0
+Testing default_delete/void_neg.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020978 -2020978
+pid is -1
+output is  status 0
+spawning command ./to_ulong.exe 
+exp11 file8
+Testing cons/1.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020989 -2020989
+pid is -1
+output is  status 0
+Testing explicit_instantiation/1.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020993 -2020993
+pid is -1
+output is  status 0
+Testing cons/dr1325-2.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2020997 -2020997
+pid is -1
+output is  status 0
+spawning command ./6124.exe 
+exp11 file8
+Testing observers/all.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021013 -2021013
+pid is -1
+output is  status 0
+spawning command ./refqual.exe 
+exp11 file8
+Testing bind/socket.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021019 -2021019
+pid is -1
+close result is 2020970 exp8 0 1
+output is /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/common_type/requirements/sfinae_friendly_2.cc: In function 'void test02()':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/common_type/requirements/sfinae_friendly_2.cc:64: error: no matching function for call to 'make_array()'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/common_type/requirements/sfinae_friendly_2.cc:28: note: candidate: 'template<class ... Args> constexpr std::array<typename std::common_type<_Tp>::type, sizeof... (Args)> make_array(Args&& ...)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/common_type/requirements/sfinae_friendly_2.cc:28: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/common_type/requirements/sfinae_friendly_2.cc: In substitution of 'template<class ... Args> constexpr std::array<typename std::common_type<_Tp>::type, sizeof... (Args)> make_array(Args&& ...) [with Args = {}]':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/common_type/requirements/sfinae_friendly_2.cc:64:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/common_type/requirements/sfinae_friendly_2.cc:28: error: no type named 'type' in 'struct std::common_type<>'
+ status 1
+compiler exited with status 1
+Testing requirements/typedefs-1.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021023 -2021023
+pid is -1
+output is  status 0
+Testing requirements/explicit_instantiation.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021027 -2021027
+pid is -1
+close result is 2020978 exp8 0 1
+output is In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/memory:78,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/stdc++.h:56,
+                 from <command-line>:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h: In instantiation of 'void std::default_delete<_Tp>::operator()(_Tp*) const [with _Tp = void]':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/default_delete/void_neg.cc:27:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h:96: error: static assertion failed: can't delete pointer to incomplete type
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h:96: note: '!(bool)std::integral_constant<bool, true>::value' evaluates to false
+ status 1
+compiler exited with status 1
+Testing arithmetic/1.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021031 -2021031
+pid is -1
+output is  status 0
+spawning command ./1.exe 
+exp11 file8
+Testing cons/16020.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021042 -2021042
+pid is -1
+output is  status 0
+Testing explicit_instantiation/1_c++0x.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021046 -2021046
+pid is -1
+output is  status 0
+Testing bitset/107037.cc
+extra_tool_flags are:  -std=c++03
+doing compile
+pid is 2021050 -2021050
+pid is -1
+output is  status 0
+spawning command ./all.exe 
+exp11 file8
+Testing observers/test.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021061 -2021061
+pid is -1
+output is  status 0
+spawning command ./dr1325-2.exe 
+exp11 file8
+Testing cons/dr396.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is -1
+output is  status 0
+spawning command ./typedefs-1.exe 
+pid is 2021077 -2021077
+exp11 file8
+Testing requirements/typedefs-2.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021083 -2021083
+pid is -1
+output is  status 0
+Testing requirements/typedefs.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021087 -2021087
+pid is -1
+output is  status 0
+Testing arithmetic/overflow_c++20.cc
+extra_tool_flags are:  -std=gnu++20
+doing compile
+pid is 2021091 -2021091
+pid is -1
+output is  status 0
+spawning command ./1.exe 
+exp11 file8
+Testing arithmetic/2.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021102 -2021102
+pid is -1
+output is  status 0
+spawning command ./16020.exe 
+exp11 file8
+Testing cons/2.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021113 -2021113
+pid is -1
+output is  status 0
+Testing bitset/version.cc
+extra_tool_flags are:  -std=gnu++23
+doing compile
+pid is 2021117 -2021117
+pid is -1
+output is  status 0
+Testing bool_constant/requirements.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021121 -2021121
+pid is -1
+output is  status 0
+Testing cons/dr2094.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021125 -2021125
+pid is -1
+output is  status 0
+spawning command ./test.exe 
+exp11 file8
+Testing operations/1.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021136 -2021136
+pid is -1
+output is  status 0
+Testing requirements/alias_decl.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021140 -2021140
+pid is -1
+output is  status 0
+spawning command ./dr396.exe 
+exp11 file8
+Testing count/constexpr.cc
+extra_tool_flags are:  -std=gnu++23
+doing compile
+pid is 2021151 -2021151
+pid is -1
+output is  status 0
+spawning command ./overflow_c++20.exe 
+exp11 file8
+Testing comparison_operators/1.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021162 -2021162
+pid is -1
+output is  status 0
+spawning command ./2.exe 
+exp11 file8
+Testing arithmetic/58850.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021174 -2021174
+pid is -1
+output is  status 0
+Testing literals/values.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021178 -2021178
+pid is -1
+output is  status 0
+spawning command ./2.exe 
+exp11 file8
+Testing duration_cast/constexpr.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021189 -2021189
+pid is -1
+output is  status 0
+Testing members/assign.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021193 -2021193
+pid is -1
+output is  status 0
+Testing cons/dr3050.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021197 -2021197
+pid is -1
+output is  status 0
+Testing requirements/explicit_instantiation.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021201 -2021201
+pid is -1
+output is  status 0
+spawning command ./1.exe 
+exp11 file8
+Testing comparison_operators/constexpr.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021212 -2021212
+pid is -1
+output is  status 0
+spawning command ./58850.exe 
+exp11 file8
+Testing arithmetic/constexpr.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021223 -2021223
+pid is -1
+output is  status 0
+spawning command ./values.exe 
+exp11 file8
+Testing requirements/constexpr_functions.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021239 -2021239
+pid is -1
+output is  status 0
+spawning command ./1.exe 
+exp11 file8
+Testing operations/13838.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021245 -2021245
+pid is -1
+output is  status 0
+Testing duration_cast/rounding.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021249 -2021249
+pid is -1
+output is  status 0
+Testing cons/dr974_neg.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021255 -2021255
+pid is -1
+output is  status 0
+spawning command ./assign.exe 
+exp11 file8
+Testing members/const.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021264 -2021264
+pid is -1
+output is  status 0
+Testing requirements/typedefs.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021268 -2021268
+pid is -1
+output is  status 0
+Testing comparison_operators/three_way.cc
+extra_tool_flags are:  -std=gnu++2a
+doing compile
+pid is 2021272 -2021272
+pid is -1
+output is  status 0
+Testing arithmetic/constexpr_c++17.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021276 -2021276
+pid is -1
+output is  status 0
+Testing requirements/explicit_instantiation.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021280 -2021280
+pid is -1
+output is  status 0
+spawning command ./13838.exe 
+exp11 file8
+Testing expected/bad.cc
+extra_tool_flags are:  -std=gnu++23
+doing compile
+pid is 2021291 -2021291
+pid is -1
+output is  status 0
+Testing expected/cons.cc
+extra_tool_flags are:  -std=gnu++23
+doing compile
+pid is -1
+output is  status 0
+Testing duration_cast/rounding_c++11.cc
+extra_tool_flags are:  -std=gnu++11
+doing compile
+pid is 2021295 -2021295
+pid is 2021298 -2021298
+pid is -1
+output is  status 0
+Testing requirements/alias_decl.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021303 -2021303
+pid is -1
+output is  status 0
+spawning command ./cons.exe 
+exp11 file8
+Testing expected/equality.cc
+extra_tool_flags are:  -std=gnu++23
+doing compile
+pid is 2021314 -2021314
+pid is -1
+output is  status 0
+Testing expected/illformed_neg.cc
+extra_tool_flags are:  -std=gnu++23
+doing compile
+pid is 2021318 -2021318
+pid is -1
+close result is 2021255 exp8 0 1
+output is /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/cons/dr974_neg.cc: In function 'void test01()':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/cons/dr974_neg.cc:30: error: conversion from 'duration<double>' to non-scalar type 'duration<int>' requested
+ status 1
+compiler exited with status 1
+Testing duration/io.cc
+extra_tool_flags are:  -std=gnu++20
+doing compile
+pid is 2021322 -2021322
+pid is -1
+close result is 2021318 exp8 0 1
+output is In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/expected/illformed_neg.cc:4:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected: In instantiation of 'class std::unexpected<int&>':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/expected/illformed_neg.cc:13:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:175: error: static assertion failed
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:175: note: constraints not satisfied
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:161:   required by the constraints of 'template<class _Er> concept std::__expected::__can_be_unexpected'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:162: note: the expression 'is_object_v<_Er> [with _Er = int&]' evaluated to 'false'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected: In instantiation of 'class std::unexpected<void()>':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/expected/illformed_neg.cc:14:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:175: error: static assertion failed
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:175: note: constraints not satisfied
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:161:   required by the constraints of 'template<class _Er> concept std::__expected::__can_be_unexpected'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:162: note: the expression 'is_object_v<_Er> [with _Er = void()]' evaluated to 'false'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:248: error: data member 'std::unexpected<void()>::_M_unex' invalidly declared function type
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/expected/illformed_neg.cc: In function 'void test_unexpected()':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/expected/illformed_neg.cc:14: error: no matching function for call to 'std::unexpected<void()>::unexpected(void (&)())'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:202: note: candidate: 'template<class _Up, class ... _Args>  requires  is_constructible_v<_Er, std::initializer_list<_Up>&, _Args ...> constexpr std::unexpected<_Er>::unexpected(std::in_place_t, std::initializer_list<_Up>, _Args&& ...) [with _Args = _Up; _Er = void()]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:202: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/expected/illformed_neg.cc:14: note:   candidate expects at least 2 arguments, 1 provided
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:194: note: candidate: 'template<class ... _Args>  requires  is_constructible_v<_Er, _Args ...> constexpr std::unexpected<_Er>::unexpected(std::in_place_t, _Args&& ...) [with _Args = {_Args ...}; _Er = void()]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:194: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:194: note: constraints not satisfied
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected: In substitution of 'template<class ... _Args>  requires  is_constructible_v<_Er, _Args ...> constexpr std::unexpected<void()>::unexpected(std::in_place_t, _Args&& ...) [with _Args = void()]':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/expected/illformed_neg.cc:14:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:194:   required by the constraints of 'template<class _Er> template<class ... _Args>  requires  is_constructible_v<_Er, _Args ...> constexpr std::unexpected<_Er>::unexpected(std::in_place_t, _Args&& ...)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:192: note: the expression 'is_constructible_v<_Er, _Args ...> [with _Er = void(); _Args = {}]' evaluated to 'false'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:186: note: candidate: 'template<class _Err>  requires !(is_same_v<typename std::remove_cvref<_Err>::type, std::unexpected>) && !(is_same_v<typename std::remove_cvref<_Err>::type, std::in_place_t>) && (is_constructible_v<_Er, _Err>) constexpr std::unexpected<_Er>::unexpected(_Err&&) [with _Er = void()]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:186: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:186: note: constraints not satisfied
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected: In substitution of 'template<class _Err>  requires !(is_same_v<typename std::remove_cvref<_Err>::type, std::unexpected>) && !(is_same_v<typename std::remove_cvref<_Err>::type, std::in_place_t>) && (is_constructible_v<_Er, _Err>) constexpr std::unexpected<void()>::unexpected(_Err&&) [with _Err = void()]':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/expected/illformed_neg.cc:14:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:186:   required by the constraints of 'template<class _Er> template<class _Err>  requires !(is_same_v<typename std::remove_cvref<_Err>::type, std::unexpected>) && !(is_same_v<typename std::remove_cvref<_Err>::type, std::in_place_t>) && (is_constructible_v<_Er, _Err>) constexpr std::unexpected<_Er>::unexpected(_Err&&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:184: note: the expression 'is_constructible_v<_Er, _Err> [with _Er = void(); _Err = void (&)()]' evaluated to 'false'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:179: note: candidate: 'constexpr std::unexpected<_Er>::unexpected(std::unexpected<_Er>&&) [with _Er = void()]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:179: note:   no known conversion for argument 1 from 'void()' to 'std::unexpected<void()>&&'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:178: note: candidate: 'constexpr std::unexpected<_Er>::unexpected(const std::unexpected<_Er>&) [with _Er = void()]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:178: note:   no known conversion for argument 1 from 'void()' to 'const std::unexpected<void()>&'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected: In instantiation of 'class std::unexpected<int [2]>':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/expected/illformed_neg.cc:19:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:175: error: static assertion failed
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:175: note: constraints not satisfied
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:161:   required by the constraints of 'template<class _Er> concept std::__expected::__can_be_unexpected'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:162: note: the expression '!(is_array_v<_Er>) [with _Er = int[2]]' evaluated to 'false'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/expected/illformed_neg.cc:19: error: no matching function for call to 'std::unexpected<int [2]>::unexpected(int [2])'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:202: note: candidate: 'template<class _Up, class ... _Args>  requires  is_constructible_v<_Er, std::initializer_list<_Up>&, _Args ...> constexpr std::unexpected<_Er>::unexpected(std::in_place_t, std::initializer_list<_Up>, _Args&& ...) [with _Args = _Up; _Er = int [2]]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:202: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/expected/illformed_neg.cc:19: note:   candidate expects at least 2 arguments, 1 provided
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:194: note: candidate: 'template<class ... _Args>  requires  is_constructible_v<_Er, _Args ...> constexpr std::unexpected<_Er>::unexpected(std::in_place_t, _Args&& ...) [with _Args = {_Args ...}; _Er = int [2]]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:194: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/expected/illformed_neg.cc:19: note:   cannot convert 'i' (type 'int [2]') to type 'std::in_place_t'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:186: note: candidate: 'template<class _Err>  requires !(is_same_v<typename std::remove_cvref<_Err>::type, std::unexpected>) && !(is_same_v<typename std::remove_cvref<_Err>::type, std::in_place_t>) && (is_constructible_v<_Er, _Err>) constexpr std::unexpected<_Er>::unexpected(_Err&&) [with _Er = int [2]]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:186: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:186: note: constraints not satisfied
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected: In substitution of 'template<class _Err>  requires !(is_same_v<typename std::remove_cvref<_Err>::type, std::unexpected>) && !(is_same_v<typename std::remove_cvref<_Err>::type, std::in_place_t>) && (is_constructible_v<_Er, _Err>) constexpr std::unexpected<int [2]>::unexpected(_Err&&) [with _Err = int [2]]':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/expected/illformed_neg.cc:19:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:186:   required by the constraints of 'template<class _Er> template<class _Err>  requires !(is_same_v<typename std::remove_cvref<_Err>::type, std::unexpected>) && !(is_same_v<typename std::remove_cvref<_Err>::type, std::in_place_t>) && (is_constructible_v<_Er, _Err>) constexpr std::unexpected<_Er>::unexpected(_Err&&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:184: note: the expression 'is_constructible_v<_Er, _Err> [with _Er = int[2]; _Err = int (&)[2]]' evaluated to 'false'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:179: note: candidate: 'constexpr std::unexpected<_Er>::unexpected(std::unexpected<_Er>&&) [with _Er = int [2]]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:179: note:   no known conversion for argument 1 from 'int [2]' to 'std::unexpected<int [2]>&&'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:178: note: candidate: 'constexpr std::unexpected<_Er>::unexpected(const std::unexpected<_Er>&) [with _Er = int [2]]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:178: note:   no known conversion for argument 1 from 'int [2]' to 'const std::unexpected<int [2]>&'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected: In instantiation of 'class std::unexpected<std::unexpected<int> >':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/expected/illformed_neg.cc:23:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:175: error: static assertion failed
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:175: note: constraints not satisfied
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:161:   required by the constraints of 'template<class _Er> concept std::__expected::__can_be_unexpected'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:163: note: the expression '!(__is_unexpected<_Er>) [with _Er = std::unexpected<int>]' evaluated to 'false'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected: In instantiation of 'class std::unexpected<const int>':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/expected/illformed_neg.cc:26:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:175: error: static assertion failed
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:175: note: constraints not satisfied
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:161:   required by the constraints of 'template<class _Er> concept std::__expected::__can_be_unexpected'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:164: note: the expression '!(is_const_v<_Er>) [with _Er = const int]' evaluated to 'false'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected: In instantiation of 'class std::unexpected<volatile int>':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/expected/illformed_neg.cc:27:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:175: error: static assertion failed
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:175: note: constraints not satisfied
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:161:   required by the constraints of 'template<class _Er> concept std::__expected::__can_be_unexpected'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:164: note: the expression '!(is_volatile_v<_Er>) [with _Er = volatile int]' evaluated to 'false'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected: In instantiation of 'class std::expected<int&, int>':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/expected/illformed_neg.cc:34:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:318: error: static assertion failed
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:318: note: '!(bool)std::is_reference_v<int&>' evaluates to false
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:669: error: forming pointer to reference type 'int&'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:677: error: forming pointer to reference type 'int&'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected: In instantiation of 'union std::expected<int&, int>::<unnamed>':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:1192:   required from 'class std::expected<int&, int>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/expected/illformed_neg.cc:34:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:1193: error: non-static data member 'std::expected<int&, int>::<unnamed union>::_M_val' in a union may not have reference type 'int&'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected: In instantiation of 'class std::expected<void(), int>':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/expected/illformed_neg.cc:38:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:319: error: static assertion failed
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:319: note: '!(bool)std::is_function_v<void()>' evaluates to false
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:786: error: function returning a function
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:800: error: function returning a function
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected: In instantiation of 'union std::expected<void(), int>::<unnamed>':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:1192:   required from 'class std::expected<void(), int>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/expected/illformed_neg.cc:38:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:1193: error: data member 'std::expected<void(), int>::<unnamed union>::_M_val' invalidly declared function type
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected: In instantiation of 'class std::expected<std::in_place_t, int>':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/expected/illformed_neg.cc:42:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:320: error: static assertion failed
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:320: note: '!(bool)std::is_same_v<std::in_place_t, std::in_place_t>' evaluates to false
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected: In instantiation of 'class std::expected<const std::in_place_t, int>':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/expected/illformed_neg.cc:43:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:320: error: static assertion failed
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:320: note: '!(bool)std::is_same_v<std::in_place_t, std::in_place_t>' evaluates to false
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected: In instantiation of 'class std::expected<std::unexpect_t, int>':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/expected/illformed_neg.cc:45:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:321: error: static assertion failed
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:321: note: '!(bool)std::is_same_v<std::unexpect_t, std::unexpect_t>' evaluates to false
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected: In instantiation of 'class std::expected<const std::unexpect_t, int>':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/expected/illformed_neg.cc:46:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:321: error: static assertion failed
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:321: note: '!(bool)std::is_same_v<std::unexpect_t, std::unexpect_t>' evaluates to false
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected: In instantiation of 'class std::expected<std::unexpected<int>, int>':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/expected/illformed_neg.cc:48:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:322: error: static assertion failed
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:322: note: '!(bool)std::__expected::__is_unexpected<std::unexpected<int> >' evaluates to false
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected: In instantiation of 'class std::expected<const std::unexpected<int>, int>':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/expected/illformed_neg.cc:49:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:322: error: static assertion failed
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:322: note: '!(bool)std::__expected::__is_unexpected<std::unexpected<int> >' evaluates to false
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected: In instantiation of 'class std::expected<int, int&>':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/expected/illformed_neg.cc:59:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:323: error: static assertion failed
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:323: note: constraints not satisfied
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:161:   required by the constraints of 'template<class _Er> concept std::__expected::__can_be_unexpected'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:162: note: the expression 'is_object_v<_Er> [with _Er = int&]' evaluated to 'false'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected: In instantiation of 'union std::expected<int, int&>::<unnamed>':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:1192:   required from 'class std::expected<int, int&>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/expected/illformed_neg.cc:59:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:1194: error: non-static data member 'std::expected<int, int&>::<unnamed union>::_M_unex' in a union may not have reference type 'int&'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected: In instantiation of 'class std::expected<int, void()>':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/expected/illformed_neg.cc:60:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:323: error: static assertion failed
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:323: note: constraints not satisfied
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:161:   required by the constraints of 'template<class _Er> concept std::__expected::__can_be_unexpected'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:162: note: the expression 'is_object_v<_Er> [with _Er = void()]' evaluated to 'false'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:814: error: function returning a function
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:826: error: function returning a function
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected: In instantiation of 'union std::expected<int, void()>::<unnamed>':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:1192:   required from 'class std::expected<int, void()>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/expected/illformed_neg.cc:60:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:1194: error: data member 'std::expected<int, void()>::<unnamed union>::_M_unex' invalidly declared function type
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected: In instantiation of 'class std::expected<int, int [2]>':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/expected/illformed_neg.cc:61:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:323: error: static assertion failed
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:323: note: constraints not satisfied
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:161:   required by the constraints of 'template<class _Er> concept std::__expected::__can_be_unexpected'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:162: note: the expression '!(is_array_v<_Er>) [with _Er = int[2]]' evaluated to 'false'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:814: error: function returning an array
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:826: error: function returning an array
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected: In instantiation of 'class std::expected<int, std::unexpected<int> >':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/expected/illformed_neg.cc:62:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:323: error: static assertion failed
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:323: note: constraints not satisfied
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:161:   required by the constraints of 'template<class _Er> concept std::__expected::__can_be_unexpected'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:163: note: the expression '!(__is_unexpected<_Er>) [with _Er = std::unexpected<int>]' evaluated to 'false'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected: In instantiation of 'class std::expected<int, const int>':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/expected/illformed_neg.cc:63:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:323: error: static assertion failed
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:323: note: constraints not satisfied
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:161:   required by the constraints of 'template<class _Er> concept std::__expected::__can_be_unexpected'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:164: note: the expression '!(is_const_v<_Er>) [with _Er = const int]' evaluated to 'false'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected: In instantiation of 'class std::expected<int, volatile int>':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/expected/illformed_neg.cc:64:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:323: error: static assertion failed
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:323: note: constraints not satisfied
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:161:   required by the constraints of 'template<class _Er> concept std::__expected::__can_be_unexpected'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/expected:164: note: the expression '!(is_volatile_v<_Er>) [with _Er = volatile int]' evaluated to 'false'
+ status 1
+compiler exited with status 1
+Testing expected/monadic.cc
+extra_tool_flags are:  -std=gnu++23
+doing compile
+pid is 2021326 -2021326
+pid is -1
+output is  status 0
+spawning command ./three_way.exe 
+exp11 file8
+Testing cons/1.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021337 -2021337
+pid is -1
+output is  status 0
+Testing requirements/1.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021341 -2021341
+pid is -1
+output is  status 0
+spawning command ./const.exe 
+exp11 file8
+Testing members/reinit.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021357 -2021357
+pid is -1
+output is  status 0
+spawning command ./monadic.exe 
+exp11 file8
+Testing expected/observers.cc
+extra_tool_flags are:  -std=gnu++23
+doing compile
+pid is 2021363 -2021363
+pid is -1
+output is  status 0
+Testing arithmetic/dr2020.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021367 -2021367
+pid is -1
+output is  status 0
+spawning command ./observers.exe 
+exp11 file8
+Testing expected/requirements.cc
+extra_tool_flags are:  -std=gnu++23
+doing compile
+pid is 2021378 -2021378
+pid is -1
+output is  status 0
+Testing expected/swap.cc
+extra_tool_flags are:  -std=gnu++23
+doing compile
+pid is 2021382 -2021382
+pid is -1
+output is  status 0
+Testing requirements/noexcept.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021386 -2021386
+pid is -1
+output is  status 0
+spawning command ./swap.exe 
+exp11 file8
+Testing expected/synopsis.cc
+doing compile
+pid is 2021397 -2021397
+pid is -1
+output is  status 0
+extra_tool_flags are:  -std=gnu++23
+doing compile
+pid is 2021401 -2021401
+pid is -1
+output is  status 0
+Testing requirements/explicit_instantiation.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021405 -2021405
+pid is -1
+output is  status 0
+Testing expected/unexpected.cc
+extra_tool_flags are:  -std=gnu++23
+doing compile
+pid is 2021409 -2021409
+pid is -1
+output is  status 0
+spawning command ./unexpected.exe 
+exp11 file8
+Testing expected/version.cc
+extra_tool_flags are:  -std=gnu++23
+doing compile
+pid is 2021420 -2021420
+pid is -1
+output is  status 0
+Testing requirements/explicit_instantiation.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021424 -2021424
+pid is -1
+output is  status 0
+Testing requirements/1_neg.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021429 -2021429
+pid is -1
+output is  status 0
+spawning command ./1.exe 
+exp11 file8
+Testing cons/1_neg.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021440 -2021440
+pid is -1
+output is  status 0
+spawning command ./dr2020.exe 
+exp11 file8
+Testing arithmetic/dr3050.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021454 -2021454
+pid is -1
+output is  status 0
+spawning command ./reinit.exe 
+exp11 file8
+Testing members/unique_ptr.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021462 -2021462
+pid is -1
+output is  status 0
+Testing requirements/reduced_period.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021466 -2021466
+pid is -1
+output is  status 0
+Testing requirements/typedefs.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021470 -2021470
+pid is -1
+output is  status 0
+Testing requirements/typedefs.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021474 -2021474
+pid is -1
+close result is 2021429 exp8 0 1
+output is In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_pair.h:60,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_algobase.h:64,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/algorithm:60,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/stdc++.h:51,
+                 from <command-line>:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/type_traits: In instantiation of 'decltype (__declval<_Tp>(0)) std::declval() [with _Tp = int; decltype (__declval<_Tp>(0)) = int&&]':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/declval/requirements/1_neg.cc:27:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/type_traits:2395: error: static assertion failed: declval() must not be used!
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/type_traits:2395: note: 'std::__declval_protector<int>::__stop' evaluates to false
+ status 1
+compiler exited with status 1
+Testing default_delete/48631_neg.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021478 -2021478
+pid is -1
+close result is 2021440 exp8 0 1
+output is /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/cons/1_neg.cc: In function 'void test01()':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/cons/1_neg.cc:27: error: no matching function for call to 'std::chrono::duration<int>::duration(double)'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/chrono:41,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/stdc++.h:173,
+                 from <command-line>:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:592: note: candidate: 'template<class _Rep2, class _Period2, class> constexpr std::chrono::duration<_Rep, _Period>::duration(const std::chrono::duration<_Rep, _Period>&) [with _Period2 = _Rep2; <template-parameter-2-3> = _Period2; _Rep = int; _Period = std::ratio<1>]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:592: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/cons/1_neg.cc:27: note:   mismatched types 'const std::chrono::duration<_Rep1, _Period1>' and 'double'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:584: note: candidate: 'template<class _Rep2, class> constexpr std::chrono::duration<_Rep, _Period>::duration(const _Rep2&) [with <template-parameter-2-2> = _Rep2; _Rep = int; _Period = std::ratio<1>]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:584: note:   template argument deduction/substitution failed:
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_pair.h:60,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_algobase.h:64,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/algorithm:60,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/stdc++.h:51:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/type_traits: In substitution of 'template<bool _Cond, class _Tp> using std::__enable_if_t = typename std::enable_if::type [with bool _Cond = false; _Tp = void]':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/type_traits:2231:   required by substitution of 'template<class ... _Cond> using std::_Require = std::__enable_if_t<std::__and_<_Bn>::value> [with _Cond = {std::is_convertible<const double&, int>, std::__or_<std::chrono::treat_as_floating_point<int>, std::__not_<std::chrono::treat_as_floating_point<double> > >}]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:581:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/type_traits:116: error: no type named 'type' in 'struct std::enable_if<false, void>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:577: note: candidate: 'constexpr std::chrono::duration<_Rep, _Period>::duration(const std::chrono::duration<_Rep, _Period>&) [with _Rep = int; _Period = std::ratio<1>]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:577: note:   no known conversion for argument 1 from 'double' to 'const std::chrono::duration<int>&'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:575: note: candidate: 'std::chrono::duration<_Rep, _Period>::duration() [with _Rep = int; _Period = std::ratio<1>]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:575: note:   candidate expects 0 arguments, 1 provided
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/cons/1_neg.cc: In function 'void test02()':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/cons/1_neg.cc:36: error: no matching function for call to 'std::chrono::duration<int, std::ratio<1, 1000> >::duration(std::chrono::duration<int, std::ratio<1, 1000000> >&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:592: note: candidate: 'template<class _Rep2, class _Period2, class> constexpr std::chrono::duration<_Rep, _Period>::duration(const std::chrono::duration<_Rep, _Period>&) [with _Period2 = _Rep2; <template-parameter-2-3> = _Period2; _Rep = int; _Period = std::ratio<1, 1000>]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:592: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:584: note: candidate: 'template<class _Rep2, class> constexpr std::chrono::duration<_Rep, _Period>::duration(const _Rep2&) [with <template-parameter-2-2> = _Rep2; _Rep = int; _Period = std::ratio<1, 1000>]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:584: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:577: note: candidate: 'constexpr std::chrono::duration<_Rep, _Period>::duration(const std::chrono::duration<_Rep, _Period>&) [with _Rep = int; _Period = std::ratio<1, 1000>]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:577: note:   no known conversion for argument 1 from 'std::chrono::duration<int, std::ratio<1, 1000000> >' to 'const std::chrono::duration<int, std::ratio<1, 1000> >&'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:575: note: candidate: 'std::chrono::duration<_Rep, _Period>::duration() [with _Rep = int; _Period = std::ratio<1, 1000>]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:575: note:   candidate expects 0 arguments, 1 provided
+ status 1
+compiler exited with status 1
+Testing cons/2.cc
+check_compile tool: libstdc++ for ia32
+doing compile
+pid is 2021482 -2021482
+pid is -1
+close result is 2021482 exp8 0 1
+output is ia322014837.c:4: error: narrowing conversion of '-1' from 'int' to 'long unsigned int' [-Wnarrowing]
+ia322014837.c:4: error: size '-1' of array 'dummy' is negative
+ia322014837.c:4: error: '__i386__' was not declared in this scope
+ status 1
+compiler exited with status 1
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021486 -2021486
+pid is -1
+close result is 2021454 exp8 0 1
+output is /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc: In function 'void test01(std::chrono::seconds, X)':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:26: error: no match for 'operator*' in 's * x' (operand types are 'std::chrono::seconds' {aka 'std::chrono::duration<long int>'} and 'X')
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/ccomplex:39,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/stdc++.h:128,
+                 from <command-line>:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/complex:395: note: candidate: 'template<class _Tp> std::complex<_Tp> std::operator*(const complex<_Tp>&, const complex<_Tp>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/complex:395: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:26: note:   'std::chrono::seconds' {aka 'std::chrono::duration<long int>'} is not derived from 'const std::complex<_Tp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/complex:404: note: candidate: 'template<class _Tp> std::complex<_Tp> std::operator*(const complex<_Tp>&, const _Tp&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/complex:404: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:26: note:   'std::chrono::seconds' {aka 'std::chrono::duration<long int>'} is not derived from 'const std::complex<_Tp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/complex:413: note: candidate: 'template<class _Tp> std::complex<_Tp> std::operator*(const _Tp&, const complex<_Tp>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/complex:413: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:26: note:   'X' is not derived from 'const std::complex<_Tp>'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/valarray:605,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/stdc++.h:167:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:407: note: candidate: 'template<class _Dom1, class _Dom2> std::_Expr<std::__detail::_BinClos<std::__multiplies, std::_Expr, std::_Expr, _Dom1, _Dom2>, typename std::__fun<std::__multiplies, typename _Dom1::value_type>::result_type> std::operator*(const _Expr<_Dom1, typename _Dom1::value_type>&, const _Expr<_Dom2, typename _Dom2::value_type>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:407: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:26: note:   'std::chrono::seconds' {aka 'std::chrono::duration<long int>'} is not derived from 'const std::_Expr<_Dom1, typename _Dom1::value_type>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:407: note: candidate: 'template<class _Dom> std::_Expr<std::__detail::_BinClos<std::__multiplies, std::_Expr, std::_Constant, _Dom, typename _Dom::value_type>, typename std::__fun<std::__multiplies, typename _Dom1::value_type>::result_type> std::operator*(const _Expr<_Dom1, typename _Dom1::value_type>&, const typename _Dom::value_type&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:407: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:26: note:   'std::chrono::seconds' {aka 'std::chrono::duration<long int>'} is not derived from 'const std::_Expr<_Dom1, typename _Dom1::value_type>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:407: note: candidate: 'template<class _Dom> std::_Expr<std::__detail::_BinClos<std::__multiplies, std::_Constant, std::_Expr, typename _Dom::value_type, _Dom>, typename std::__fun<std::__multiplies, typename _Dom1::value_type>::result_type> std::operator*(const typename _Dom::value_type&, const _Expr<_Dom1, typename _Dom1::value_type>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:407: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:26: note:   'X' is not derived from 'const std::_Expr<_Dom1, typename _Dom1::value_type>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:407: note: candidate: 'template<class _Dom> std::_Expr<std::__detail::_BinClos<std::__multiplies, std::_Expr, std::_ValArray, _Dom, typename _Dom::value_type>, typename std::__fun<std::__multiplies, typename _Dom1::value_type>::result_type> std::operator*(const _Expr<_Dom1, typename _Dom1::value_type>&, const valarray<typename _Dom::value_type>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:407: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:26: note:   'std::chrono::seconds' {aka 'std::chrono::duration<long int>'} is not derived from 'const std::_Expr<_Dom1, typename _Dom1::value_type>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:407: note: candidate: 'template<class _Dom> std::_Expr<std::__detail::_BinClos<std::__multiplies, std::_ValArray, std::_Expr, typename _Dom::value_type, _Dom>, typename std::__fun<std::__multiplies, typename _Dom1::value_type>::result_type> std::operator*(const valarray<typename _Dom::value_type>&, const _Expr<_Dom1, typename _Dom1::value_type>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:407: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:26: note:   'X' is not derived from 'const std::_Expr<_Dom1, typename _Dom1::value_type>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/valarray:1191: note: candidate: 'template<class _Tp> std::_Expr<std::__detail::_BinClos<std::__multiplies, std::_ValArray, std::_ValArray, _Tp, _Tp>, typename std::__fun<std::__multiplies, _Tp>::result_type> std::operator*(const valarray<_Tp>&, const valarray<_Tp>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/valarray:1191: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:26: note:   'std::chrono::seconds' {aka 'std::chrono::duration<long int>'} is not derived from 'const std::valarray<_Tp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/valarray:1191: note: candidate: 'template<class _Tp> std::_Expr<std::__detail::_BinClos<std::__multiplies, std::_ValArray, std::_Constant, _Tp, _Tp>, typename std::__fun<std::__multiplies, _Tp>::result_type> std::operator*(const valarray<_Tp>&, const typename valarray<_Tp>::value_type&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/valarray:1191: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:26: note:   'std::chrono::seconds' {aka 'std::chrono::duration<long int>'} is not derived from 'const std::valarray<_Tp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/valarray:1191: note: candidate: 'template<class _Tp> std::_Expr<std::__detail::_BinClos<std::__multiplies, std::_Constant, std::_ValArray, _Tp, _Tp>, typename std::__fun<std::__multiplies, _Tp>::result_type> std::operator*(const typename valarray<_Tp>::value_type&, const valarray<_Tp>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/valarray:1191: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:26: note:   'X' is not derived from 'const std::valarray<_Tp>'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/chrono:41,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/stdc++.h:173:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:752: note: candidate: 'template<class _Rep1, class _Period, class _Rep2> constexpr std::chrono::duration<std::chrono::__common_rep_t<_Rep1, _Rep2>, _Period> std::chrono::operator*(const duration<_Rep1, _Period1>&, const _Rep2&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:752: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h: In substitution of 'template<class _Rep1, class _Rep2, class _CRep> using std::chrono::__common_rep_t = typename std::enable_if<std::is_convertible<const _Rep2&, _CRep>::value, _CRep>::type [with _Rep1 = long int; _Rep2 = X; _CRep = long int]':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:752:   required by substitution of 'template<class _Rep1, class _Period, class _Rep2> constexpr std::chrono::duration<std::chrono::__common_rep_t<_Rep1, _Rep2>, _Period> std::chrono::operator*(const duration<_Rep1, _Period1>&, const _Rep2&) [with _Rep1 = long int; _Period = std::ratio<1>; _Rep2 = X]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:26:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:740: error: no type named 'type' in 'struct std::enable_if<false, long int>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:761: note: candidate: 'template<class _Rep1, class _Rep2, class _Period> constexpr std::chrono::duration<std::chrono::__common_rep_t<_Rep2, _Rep1>, _Period> std::chrono::operator*(const _Rep1&, const duration<_Rep, _Period>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:761: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:26: note:   'X' is not derived from 'const std::chrono::duration<_Rep, _Period>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:27: error: no match for 'operator*' in 'x * s' (operand types are 'X' and 'std::chrono::seconds' {aka 'std::chrono::duration<long int>'})
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/complex:395: note: candidate: 'template<class _Tp> std::complex<_Tp> std::operator*(const complex<_Tp>&, const complex<_Tp>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/complex:395: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:27: note:   'X' is not derived from 'const std::complex<_Tp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/complex:404: note: candidate: 'template<class _Tp> std::complex<_Tp> std::operator*(const complex<_Tp>&, const _Tp&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/complex:404: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:27: note:   'X' is not derived from 'const std::complex<_Tp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/complex:413: note: candidate: 'template<class _Tp> std::complex<_Tp> std::operator*(const _Tp&, const complex<_Tp>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/complex:413: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:27: note:   'std::chrono::seconds' {aka 'std::chrono::duration<long int>'} is not derived from 'const std::complex<_Tp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:407: note: candidate: 'template<class _Dom1, class _Dom2> std::_Expr<std::__detail::_BinClos<std::__multiplies, std::_Expr, std::_Expr, _Dom1, _Dom2>, typename std::__fun<std::__multiplies, typename _Dom1::value_type>::result_type> std::operator*(const _Expr<_Dom1, typename _Dom1::value_type>&, const _Expr<_Dom2, typename _Dom2::value_type>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:407: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:27: note:   'X' is not derived from 'const std::_Expr<_Dom1, typename _Dom1::value_type>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:407: note: candidate: 'template<class _Dom> std::_Expr<std::__detail::_BinClos<std::__multiplies, std::_Expr, std::_Constant, _Dom, typename _Dom::value_type>, typename std::__fun<std::__multiplies, typename _Dom1::value_type>::result_type> std::operator*(const _Expr<_Dom1, typename _Dom1::value_type>&, const typename _Dom::value_type&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:407: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:27: note:   'X' is not derived from 'const std::_Expr<_Dom1, typename _Dom1::value_type>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:407: note: candidate: 'template<class _Dom> std::_Expr<std::__detail::_BinClos<std::__multiplies, std::_Constant, std::_Expr, typename _Dom::value_type, _Dom>, typename std::__fun<std::__multiplies, typename _Dom1::value_type>::result_type> std::operator*(const typename _Dom::value_type&, const _Expr<_Dom1, typename _Dom1::value_type>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:407: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:27: note:   'std::chrono::seconds' {aka 'std::chrono::duration<long int>'} is not derived from 'const std::_Expr<_Dom1, typename _Dom1::value_type>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:407: note: candidate: 'template<class _Dom> std::_Expr<std::__detail::_BinClos<std::__multiplies, std::_Expr, std::_ValArray, _Dom, typename _Dom::value_type>, typename std::__fun<std::__multiplies, typename _Dom1::value_type>::result_type> std::operator*(const _Expr<_Dom1, typename _Dom1::value_type>&, const valarray<typename _Dom::value_type>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:407: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:27: note:   'X' is not derived from 'const std::_Expr<_Dom1, typename _Dom1::value_type>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:407: note: candidate: 'template<class _Dom> std::_Expr<std::__detail::_BinClos<std::__multiplies, std::_ValArray, std::_Expr, typename _Dom::value_type, _Dom>, typename std::__fun<std::__multiplies, typename _Dom1::value_type>::result_type> std::operator*(const valarray<typename _Dom::value_type>&, const _Expr<_Dom1, typename _Dom1::value_type>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:407: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:27: note:   'std::chrono::seconds' {aka 'std::chrono::duration<long int>'} is not derived from 'const std::_Expr<_Dom1, typename _Dom1::value_type>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/valarray:1191: note: candidate: 'template<class _Tp> std::_Expr<std::__detail::_BinClos<std::__multiplies, std::_ValArray, std::_ValArray, _Tp, _Tp>, typename std::__fun<std::__multiplies, _Tp>::result_type> std::operator*(const valarray<_Tp>&, const valarray<_Tp>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/valarray:1191: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:27: note:   'X' is not derived from 'const std::valarray<_Tp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/valarray:1191: note: candidate: 'template<class _Tp> std::_Expr<std::__detail::_BinClos<std::__multiplies, std::_ValArray, std::_Constant, _Tp, _Tp>, typename std::__fun<std::__multiplies, _Tp>::result_type> std::operator*(const valarray<_Tp>&, const typename valarray<_Tp>::value_type&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/valarray:1191: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:27: note:   'X' is not derived from 'const std::valarray<_Tp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/valarray:1191: note: candidate: 'template<class _Tp> std::_Expr<std::__detail::_BinClos<std::__multiplies, std::_Constant, std::_ValArray, _Tp, _Tp>, typename std::__fun<std::__multiplies, _Tp>::result_type> std::operator*(const typename valarray<_Tp>::value_type&, const valarray<_Tp>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/valarray:1191: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:27: note:   'std::chrono::seconds' {aka 'std::chrono::duration<long int>'} is not derived from 'const std::valarray<_Tp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:752: note: candidate: 'template<class _Rep1, class _Period, class _Rep2> constexpr std::chrono::duration<std::chrono::__common_rep_t<_Rep1, _Rep2>, _Period> std::chrono::operator*(const duration<_Rep1, _Period1>&, const _Rep2&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:752: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:27: note:   'X' is not derived from 'const std::chrono::duration<_Rep1, _Period1>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:761: note: candidate: 'template<class _Rep1, class _Rep2, class _Period> constexpr std::chrono::duration<std::chrono::__common_rep_t<_Rep2, _Rep1>, _Period> std::chrono::operator*(const _Rep1&, const duration<_Rep, _Period>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:761: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:28: error: no match for 'operator/' in 's / x' (operand types are 'std::chrono::seconds' {aka 'std::chrono::duration<long int>'} and 'X')
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/complex:425: note: candidate: 'template<class _Tp> std::complex<_Tp> std::operator/(const complex<_Tp>&, const complex<_Tp>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/complex:425: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:28: note:   'std::chrono::seconds' {aka 'std::chrono::duration<long int>'} is not derived from 'const std::complex<_Tp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/complex:434: note: candidate: 'template<class _Tp> std::complex<_Tp> std::operator/(const complex<_Tp>&, const _Tp&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/complex:434: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:28: note:   'std::chrono::seconds' {aka 'std::chrono::duration<long int>'} is not derived from 'const std::complex<_Tp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/complex:443: note: candidate: 'template<class _Tp> std::complex<_Tp> std::operator/(const _Tp&, const complex<_Tp>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/complex:443: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:28: note:   'X' is not derived from 'const std::complex<_Tp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:408: note: candidate: 'template<class _Dom1, class _Dom2> std::_Expr<std::__detail::_BinClos<std::__divides, std::_Expr, std::_Expr, _Dom1, _Dom2>, typename std::__fun<std::__divides, typename _Dom1::value_type>::result_type> std::operator/(const _Expr<_Dom1, typename _Dom1::value_type>&, const _Expr<_Dom2, typename _Dom2::value_type>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:408: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:28: note:   'std::chrono::seconds' {aka 'std::chrono::duration<long int>'} is not derived from 'const std::_Expr<_Dom1, typename _Dom1::value_type>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:408: note: candidate: 'template<class _Dom> std::_Expr<std::__detail::_BinClos<std::__divides, std::_Expr, std::_Constant, _Dom, typename _Dom::value_type>, typename std::__fun<std::__divides, typename _Dom1::value_type>::result_type> std::operator/(const _Expr<_Dom1, typename _Dom1::value_type>&, const typename _Dom::value_type&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:408: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:28: note:   'std::chrono::seconds' {aka 'std::chrono::duration<long int>'} is not derived from 'const std::_Expr<_Dom1, typename _Dom1::value_type>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:408: note: candidate: 'template<class _Dom> std::_Expr<std::__detail::_BinClos<std::__divides, std::_Constant, std::_Expr, typename _Dom::value_type, _Dom>, typename std::__fun<std::__divides, typename _Dom1::value_type>::result_type> std::operator/(const typename _Dom::value_type&, const _Expr<_Dom1, typename _Dom1::value_type>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:408: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:28: note:   'X' is not derived from 'const std::_Expr<_Dom1, typename _Dom1::value_type>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:408: note: candidate: 'template<class _Dom> std::_Expr<std::__detail::_BinClos<std::__divides, std::_Expr, std::_ValArray, _Dom, typename _Dom::value_type>, typename std::__fun<std::__divides, typename _Dom1::value_type>::result_type> std::operator/(const _Expr<_Dom1, typename _Dom1::value_type>&, const valarray<typename _Dom::value_type>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:408: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:28: note:   'std::chrono::seconds' {aka 'std::chrono::duration<long int>'} is not derived from 'const std::_Expr<_Dom1, typename _Dom1::value_type>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:408: note: candidate: 'template<class _Dom> std::_Expr<std::__detail::_BinClos<std::__divides, std::_ValArray, std::_Expr, typename _Dom::value_type, _Dom>, typename std::__fun<std::__divides, typename _Dom1::value_type>::result_type> std::operator/(const valarray<typename _Dom::value_type>&, const _Expr<_Dom1, typename _Dom1::value_type>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:408: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:28: note:   'X' is not derived from 'const std::_Expr<_Dom1, typename _Dom1::value_type>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/valarray:1192: note: candidate: 'template<class _Tp> std::_Expr<std::__detail::_BinClos<std::__divides, std::_ValArray, std::_ValArray, _Tp, _Tp>, typename std::__fun<std::__divides, _Tp>::result_type> std::operator/(const valarray<_Tp>&, const valarray<_Tp>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/valarray:1192: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:28: note:   'std::chrono::seconds' {aka 'std::chrono::duration<long int>'} is not derived from 'const std::valarray<_Tp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/valarray:1192: note: candidate: 'template<class _Tp> std::_Expr<std::__detail::_BinClos<std::__divides, std::_ValArray, std::_Constant, _Tp, _Tp>, typename std::__fun<std::__divides, _Tp>::result_type> std::operator/(const valarray<_Tp>&, const typename valarray<_Tp>::value_type&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/valarray:1192: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:28: note:   'std::chrono::seconds' {aka 'std::chrono::duration<long int>'} is not derived from 'const std::valarray<_Tp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/valarray:1192: note: candidate: 'template<class _Tp> std::_Expr<std::__detail::_BinClos<std::__divides, std::_Constant, std::_ValArray, _Tp, _Tp>, typename std::__fun<std::__divides, _Tp>::result_type> std::operator/(const typename valarray<_Tp>::value_type&, const valarray<_Tp>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/valarray:1192: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:28: note:   'X' is not derived from 'const std::valarray<_Tp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:767: note: candidate: 'template<class _Rep1, class _Period, class _Rep2> constexpr std::chrono::duration<std::chrono::__common_rep_t<_Rep1, typename std::enable_if<(! std::chrono::__is_duration<_Rep2>::value), _Rep2>::type>, _Period> std::chrono::operator/(const duration<_Rep1, _Period1>&, const _Rep2&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:767: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:777: note: candidate: 'template<class _Rep1, class _Period1, class _Rep2, class _Period2> constexpr typename std::common_type<_Rep1, _Rep2>::type std::chrono::operator/(const duration<_Rep1, _Period1>&, const duration<_Rep2, _Period2>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:777: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:28: note:   'X' is not derived from 'const std::chrono::duration<_Rep2, _Period2>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:29: error: no match for 'operator%' in 's % x' (operand types are 'std::chrono::seconds' {aka 'std::chrono::duration<long int>'} and 'X')
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:409: note: candidate: 'template<class _Dom1, class _Dom2> std::_Expr<std::__detail::_BinClos<std::__modulus, std::_Expr, std::_Expr, _Dom1, _Dom2>, typename std::__fun<std::__modulus, typename _Dom1::value_type>::result_type> std::operator%(const _Expr<_Dom1, typename _Dom1::value_type>&, const _Expr<_Dom2, typename _Dom2::value_type>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:409: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:29: note:   'std::chrono::seconds' {aka 'std::chrono::duration<long int>'} is not derived from 'const std::_Expr<_Dom1, typename _Dom1::value_type>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:409: note: candidate: 'template<class _Dom> std::_Expr<std::__detail::_BinClos<std::__modulus, std::_Expr, std::_Constant, _Dom, typename _Dom::value_type>, typename std::__fun<std::__modulus, typename _Dom1::value_type>::result_type> std::operator%(const _Expr<_Dom1, typename _Dom1::value_type>&, const typename _Dom::value_type&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:409: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:29: note:   'std::chrono::seconds' {aka 'std::chrono::duration<long int>'} is not derived from 'const std::_Expr<_Dom1, typename _Dom1::value_type>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:409: note: candidate: 'template<class _Dom> std::_Expr<std::__detail::_BinClos<std::__modulus, std::_Constant, std::_Expr, typename _Dom::value_type, _Dom>, typename std::__fun<std::__modulus, typename _Dom1::value_type>::result_type> std::operator%(const typename _Dom::value_type&, const _Expr<_Dom1, typename _Dom1::value_type>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:409: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:29: note:   'X' is not derived from 'const std::_Expr<_Dom1, typename _Dom1::value_type>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:409: note: candidate: 'template<class _Dom> std::_Expr<std::__detail::_BinClos<std::__modulus, std::_Expr, std::_ValArray, _Dom, typename _Dom::value_type>, typename std::__fun<std::__modulus, typename _Dom1::value_type>::result_type> std::operator%(const _Expr<_Dom1, typename _Dom1::value_type>&, const valarray<typename _Dom::value_type>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:409: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:29: note:   'std::chrono::seconds' {aka 'std::chrono::duration<long int>'} is not derived from 'const std::_Expr<_Dom1, typename _Dom1::value_type>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:409: note: candidate: 'template<class _Dom> std::_Expr<std::__detail::_BinClos<std::__modulus, std::_ValArray, std::_Expr, typename _Dom::value_type, _Dom>, typename std::__fun<std::__modulus, typename _Dom1::value_type>::result_type> std::operator%(const valarray<typename _Dom::value_type>&, const _Expr<_Dom1, typename _Dom1::value_type>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:409: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:29: note:   'X' is not derived from 'const std::_Expr<_Dom1, typename _Dom1::value_type>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/valarray:1193: note: candidate: 'template<class _Tp> std::_Expr<std::__detail::_BinClos<std::__modulus, std::_ValArray, std::_ValArray, _Tp, _Tp>, typename std::__fun<std::__modulus, _Tp>::result_type> std::operator%(const valarray<_Tp>&, const valarray<_Tp>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/valarray:1193: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:29: note:   'std::chrono::seconds' {aka 'std::chrono::duration<long int>'} is not derived from 'const std::valarray<_Tp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/valarray:1193: note: candidate: 'template<class _Tp> std::_Expr<std::__detail::_BinClos<std::__modulus, std::_ValArray, std::_Constant, _Tp, _Tp>, typename std::__fun<std::__modulus, _Tp>::result_type> std::operator%(const valarray<_Tp>&, const typename valarray<_Tp>::value_type&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/valarray:1193: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:29: note:   'std::chrono::seconds' {aka 'std::chrono::duration<long int>'} is not derived from 'const std::valarray<_Tp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/valarray:1193: note: candidate: 'template<class _Tp> std::_Expr<std::__detail::_BinClos<std::__modulus, std::_Constant, std::_ValArray, _Tp, _Tp>, typename std::__fun<std::__modulus, _Tp>::result_type> std::operator%(const typename valarray<_Tp>::value_type&, const valarray<_Tp>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/valarray:1193: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:29: note:   'X' is not derived from 'const std::valarray<_Tp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:790: note: candidate: 'template<class _Rep1, class _Period, class _Rep2> constexpr std::chrono::duration<std::chrono::__common_rep_t<_Rep1, typename std::enable_if<(! std::chrono::__is_duration<_Rep2>::value), _Rep2>::type>, _Period> std::chrono::operator%(const duration<_Rep1, _Period1>&, const _Rep2&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:790: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:801: note: candidate: 'template<class _Rep1, class _Period1, class _Rep2, class _Period2> constexpr typename std::common_type<std::chrono::duration<_Rep1, _Period1>, std::chrono::duration<_Rep2, _Period2> >::type std::chrono::operator%(const duration<_Rep1, _Period1>&, const duration<_Rep2, _Period2>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:801: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/arithmetic/dr3050.cc:29: note:   'X' is not derived from 'const std::chrono::duration<_Rep2, _Period2>'
+ status 1
+compiler exited with status 1
+Testing arithmetic/dr934-1.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021490 -2021490
+pid is -1
+output is  status 0
+Testing requirements/sfinae_friendly_1.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021494 -2021494
+pid is -1
+output is  status 0
+Testing requirements/typedefs_neg.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021498 -2021498
+pid is -1
+output is  status 0
+spawning command ./unique_ptr.exe 
+exp11 file8
+Testing members/weak_from_this.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021509 -2021509
+pid is -1
+output is  status 0
+Testing extent/value.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021513 -2021513
+pid is -1
+close result is 2021478 exp8 0 1
+output is /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/default_delete/48631_neg.cc:28: error: no match for call to '(std::default_delete<B []>) (D*)'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/memory:78,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/stdc++.h:56,
+                 from <command-line>:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h:137: note: candidate: 'template<class _Up> typename std::enable_if<std::is_convertible<_Up (*)[], _Tp (*)[]>::value>::type std::default_delete<_Tp []>::operator()(_Up*) const [with _Tp = B]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h:137: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h: In substitution of 'template<class _Up> typename std::enable_if<std::is_convertible<_Up (*)[], B (*)[]>::value, void>::type std::default_delete<B []>::operator()(_Up*) const [with _Up = D]':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/default_delete/48631_neg.cc:28:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h:137: error: no type named 'type' in 'struct std::enable_if<false, void>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/default_delete/48631_neg.cc:28: error: no match for call to '(std::default_delete<B []>) (D*)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h:137: note: candidate: 'template<class _Up> typename std::enable_if<std::is_convertible<_Up (*)[], _Tp (*)[]>::value>::type std::default_delete<_Tp []>::operator()(_Up*) const [with _Tp = B]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h:137: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h: In substitution of 'template<class _Up> typename std::enable_if<std::is_convertible<_Up (*)[], B (*)[]>::value, void>::type std::default_delete<B []>::operator()(_Up*) const [with _Up = D]':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/default_delete/48631_neg.cc:28:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h:137: error: no type named 'type' in 'struct std::enable_if<false, void>'
+ status 1
+compiler exited with status 1
+Testing cons/constexpr.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021517 -2021517
+pid is -1
+output is  status 0
+spawning command ./2.exe 
+exp11 file8
+Testing cons/54025.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021528 -2021528
+pid is -1
+output is  status 0
+Testing arithmetic/dr934-2.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021532 -2021532
+pid is -1
+close result is 2021498 exp8 0 1
+output is /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/enable_if/requirements/typedefs_neg.cc: In function 'void test01()':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/enable_if/requirements/typedefs_neg.cc:30: error: 'type' in 'struct std::enable_if<false, int>' does not name a type
+ status 1
+compiler exited with status 1
+Testing enable_shared_from_this/56383.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is -1
+output is  status 0
+Testing requirements/treat_as_floating_point_v.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021536 -2021536
+pid is 2021539 -2021539
+pid is -1
+output is  status 0
+Testing forward/1.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021544 -2021544
+pid is -1
+output is  status 0
+spawning command ./weak_from_this.exe 
+exp11 file8
+Testing requirements/explicit_instantiation.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021555 -2021555
+pid is -1
+output is  status 0
+Testing forward/e.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021559 -2021559
+pid is -1
+output is  status 0
+Testing cons/constexpr.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021563 -2021563
+pid is -1
+output is  status 0
+spawning command ./dr934-2.exe 
+exp11 file8
+Testing from_chars/6.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021574 -2021574
+pid is -1
+output is  status 0
+Testing requirements/typedefs_neg1.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021578 -2021578
+pid is -1
+output is  status 0
+Testing forward/1_neg.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021582 -2021582
+pid is -1
+output is  status 0
+spawning command ./56383.exe 
+exp11 file8
+Testing enable_shared_from_this/89303.cc
+extra_tool_flags are:  -O1
+doing compile
+pid is 2021593 -2021593
+pid is -1
+output is  status 0
+Testing exchange/1.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021597 -2021597
+pid is -1
+output is  status 0
+Testing forward/f_neg.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021601 -2021601
+pid is -1
+output is  status 0
+spawning command ./89303.exe 
+exp11 file8
+Testing cons/constexpr.cc
+extra_tool_flags are:  -fno-inline -g0
+doing compile
+pid is 2021612 -2021612
+pid is -1
+output is  status 0
+Testing cons/dr1177.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021616 -2021616
+pid is -1
+output is  status 0
+spawning command ./6.exe 
+exp11 file8
+Testing from_chars/7.cc
+doing compile
+pid is 2021627 -2021627
+pid is -1
+output is  status 0
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021631 -2021631
+pid is -1
+output is  status 0
+Testing function/2.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021635 -2021635
+pid is -1
+close result is 2021578 exp8 0 1
+output is In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/chrono:41,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/stdc++.h:173,
+                 from <command-line>:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h: In instantiation of 'class std::chrono::duration<std::chrono::duration<int> >':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/requirements/typedefs_neg1.cc:29:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:525: error: static assertion failed: rep cannot be a duration
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:525: note: '!(bool)std::integral_constant<bool, true>::value' evaluates to false
+ status 1
+compiler exited with status 1
+Testing requirements/typedefs_neg2.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021639 -2021639
+pid is -1
+close result is 2021582 exp8 0 1
+output is /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/forward/1_neg.cc: In instantiation of 'std::shared_ptr<_Tp> factory(A1&&, A2&&) [with T = A; A1 = int; A2 = double]':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/forward/1_neg.cc:42:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/forward/1_neg.cc:31: error: cannot bind non-const lvalue reference of type 'int&' to an rvalue of type 'int'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/forward/1_neg.cc:37: note:   initializing argument 1 of 'A::A(int&, const double&)'
+ status 1
+compiler exited with status 1
+Testing forward/a.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021643 -2021643
+pid is -1
+close result is 2021601 exp8 0 1
+output is In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_pair.h:61,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_algobase.h:64,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/algorithm:60,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/stdc++.h:51,
+                 from <command-line>:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/move.h: In instantiation of 'constexpr _Tp&& std::forward(typename remove_reference<_Functor>::type&&) [with _Tp = const B&; typename remove_reference<_Functor>::type = const B]':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/forward/f_neg.cc:38:   required from 'C<T>::C(C<U>&&) [with U = A; <template-parameter-2-2> = void; T = const B&]'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/forward/f_neg.cc:87:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/move.h:91: error: static assertion failed: std::forward must not be used to convert an rvalue to an lvalue
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/move.h:91: note: '!(bool)std::integral_constant<bool, true>::value' evaluates to false
+ status 1
+compiler exited with status 1
+Testing requirements/explicit_instantiation.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021647 -2021647
+pid is -1
+output is  status 0
+spawning command ./1.exe 
+exp11 file8
+Testing exchange/constexpr.cc
+extra_tool_flags are:  -std=gnu++2a
+doing compile
+pid is 2021658 -2021658
+pid is -1
+output is  status 0
+Testing exchange/noexcept.cc
+extra_tool_flags are:  -std=gnu++2a
+doing compile
+pid is 2021662 -2021662
+pid is -1
+output is  status 0
+Testing expected/assign.cc
+extra_tool_flags are:  -std=gnu++23
+doing compile
+pid is 2021666 -2021666
+pid is -1
+output is  status 0
+Testing function/65760.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021670 -2021670
+pid is -1
+output is  status 0
+spawning command ./io.exe 
+exp11 file8
+Testing literals/61166.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021681 -2021681
+pid is -1
+output is  status 0
+spawning command ./assign.exe 
+exp11 file8
+Testing cmp/cmp_neg.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021697 -2021697
+pid is -1
+close result is 2021639 exp8 0 1
+output is In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/chrono:41,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/stdc++.h:173,
+                 from <command-line>:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h: In instantiation of 'class std::chrono::duration<int, int>':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/requirements/typedefs_neg2.cc:30:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:526: error: static assertion failed: period must be a specialization of ratio
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:526: note: 'std::integral_constant<bool, false>::value' evaluates to false
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:528: error: 'num' is not a member of 'int'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:559: error: 'num' is not a member of 'int'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:561: error: 'den' is not a member of 'int'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:560: error: 'den' is not a member of 'int'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:560: error: 'den' is not a member of 'int'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:562: error: 'num' is not a member of 'int'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:559: error: 'num' is not a member of 'int'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:572: error: 'int' is not a class, struct, or union type
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:559: error: 'num' is not a member of 'int'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:561: error: 'den' is not a member of 'int'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:560: error: 'den' is not a member of 'int'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:560: error: 'den' is not a member of 'int'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:562: error: 'num' is not a member of 'int'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:559: error: 'num' is not a member of 'int'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:606: error: 'int' is not a class, struct, or union type
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:610: error: 'int' is not a class, struct, or union type
+ status 1
+compiler exited with status 1
+Testing requirements/typedefs_neg3.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021701 -2021701
+pid is -1
+output is  status 0
+spawning command ./7.exe 
+exp11 file8
+Testing from_chars/8.cc
+extra_tool_flags are:  -std=gnu++2b
+doing compile
+pid is 2021707 -2021707
+pid is -1
+output is  status 0
+spawning command ./2.exe 
+exp11 file8
+Testing function/3.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021718 -2021718
+pid is -1
+output is  status 0
+spawning command ./a.exe 
+exp11 file8
+Testing forward/b.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021729 -2021729
+pid is -1
+output is  status 0
+Testing from_chars/1.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021733 -2021733
+pid is -1
+output is  status 0
+Testing function/68995.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021737 -2021737
+pid is -1
+output is  status 0
+spawning command ./61166.exe 
+exp11 file8
+Testing literals/65499.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is -1
+close result is 2021697 exp8 0 1
+output is /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc: In function 'void test01()':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: error: no match for 'operator==' in 'f1 == f2' (operand types are 'std::function<void()>' and 'std::function<void()>')
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note: candidate: 'operator==(int, int)' (built-in)
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   no known conversion for argument 2 from 'std::function<void()>' to 'int'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/regex:68,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/stdc++.h:182,
+                 from <command-line>:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/regex.h:1093: note: candidate: 'template<class _BiIter> bool std::__cxx11::operator==(const sub_match<_BiIter>&, const sub_match<_BiIter>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/regex.h:1093: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::__cxx11::sub_match<_BiIter>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/regex.h:1189: note: candidate: 'template<class _Bi_iter, class _Ch_traits, class _Ch_alloc> bool std::__cxx11::operator==(__sub_match_string<_Bi_iter, _Ch_traits, _Ch_alloc>&, const sub_match<_BiIter>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/regex.h:1189: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'std::__cxx11::__sub_match_string<_Bi_iter, _Ch_traits, _Ch_alloc>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/regex.h:1264: note: candidate: 'template<class _Bi_iter, class _Ch_traits, class _Ch_alloc> bool std::__cxx11::operator==(const sub_match<_BiIter>&, __sub_match_string<_Bi_iter, _Ch_traits, _Ch_alloc>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/regex.h:1264: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::__cxx11::sub_match<_BiIter>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/regex.h:1356: note: candidate: 'template<class _Bi_iter> bool std::__cxx11::operator==(const typename std::iterator_traits<_Iter>::value_type*, const sub_match<_BiIter>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/regex.h:1356: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::__cxx11::sub_match<_BiIter>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/regex.h:1431: note: candidate: 'template<class _Bi_iter> bool std::__cxx11::operator==(const sub_match<_BiIter>&, const typename std::iterator_traits<_Iter>::value_type*)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/regex.h:1431: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::__cxx11::sub_match<_BiIter>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/regex.h:1524: note: candidate: 'template<class _Bi_iter> bool std::__cxx11::operator==(const typename std::iterator_traits<_Iter>::value_type&, const sub_match<_BiIter>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/regex.h:1524: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::__cxx11::sub_match<_BiIter>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/regex.h:1603: note: candidate: 'template<class _Bi_iter> bool std::__cxx11::operator==(const sub_match<_BiIter>&, const typename std::iterator_traits<_Iter>::value_type&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/regex.h:1603: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::__cxx11::sub_match<_BiIter>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/regex.h:2176: note: candidate: 'template<class _Bi_iter, class _Alloc> bool std::__cxx11::operator==(const match_results<_BiIter, _Alloc>&, const match_results<_BiIter, _Alloc>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/regex.h:2176: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::__cxx11::match_results<_BiIter, _Alloc>'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_algobase.h:64,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/algorithm:60,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/stdc++.h:51:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_pair.h:812: note: candidate: 'template<class _T1, class _T2> constexpr bool std::operator==(const pair<_T1, _T2>&, const pair<_T1, _T2>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_pair.h:812: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::pair<_T1, _T2>'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_algobase.h:67:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h:444: note: candidate: 'template<class _Iterator> constexpr bool std::operator==(const reverse_iterator<_Iterator>&, const reverse_iterator<_Iterator>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h:444: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::reverse_iterator<_Iterator>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h:489: note: candidate: 'template<class _IteratorL, class _IteratorR> constexpr bool std::operator==(const reverse_iterator<_Iterator>&, const reverse_iterator<_IteratorR>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h:489: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::reverse_iterator<_Iterator>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h:1674: note: candidate: 'template<class _IteratorL, class _IteratorR> constexpr bool std::operator==(const move_iterator<_IteratorL>&, const move_iterator<_IteratorR>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h:1674: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::move_iterator<_IteratorL>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h:1744: note: candidate: 'template<class _Iterator> constexpr bool std::operator==(const move_iterator<_IteratorL>&, const move_iterator<_IteratorL>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h:1744: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::move_iterator<_IteratorL>'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/char_traits.h:42,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/string:42,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bitset:52,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/stdc++.h:52:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/postypes.h:192: note: candidate: 'template<class _StateT> bool std::operator==(const fpos<_StateT>&, const fpos<_StateT>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/postypes.h:192: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::fpos<_StateT>'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/string:43:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/allocator.h:237: note: candidate: 'template<class _T1, class _T2> bool std::operator==(const allocator<_CharT>&, const allocator<_T2>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/allocator.h:237: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::allocator<_CharT>'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/basic_string.h:47,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/string:54:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/string_view:608: note: candidate: 'template<class _CharT, class _Traits> constexpr bool std::operator==(basic_string_view<_CharT, _Traits>, basic_string_view<_CharT, _Traits>)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/string_view:608: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'std::basic_string_view<_CharT, _Traits>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/string_view:615: note: candidate: 'template<class _CharT, class _Traits> constexpr bool std::operator==(basic_string_view<_CharT, _Traits>, __type_identity_t<basic_string_view<_CharT, _Traits> >)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/string_view:615: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'std::basic_string_view<_CharT, _Traits>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/string_view:641: note: candidate: 'template<class _CharT, class _Traits> constexpr bool std::operator==(__type_identity_t<basic_string_view<_CharT, _Traits> >, basic_string_view<_CharT, _Traits>)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/string_view:641: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'std::basic_string_view<_CharT, _Traits>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/basic_string.h:3701: note: candidate: 'template<class _CharT, class _Traits, class _Alloc> bool std::operator==(const __cxx11::basic_string<_CharT, _Traits, _Allocator>&, const __cxx11::basic_string<_CharT, _Traits, _Allocator>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/basic_string.h:3701: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::__cxx11::basic_string<_CharT, _Traits, _Allocator>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/basic_string.h:3718: note: candidate: 'template<class _CharT, class _Traits, class _Alloc> bool std::operator==(const __cxx11::basic_string<_CharT, _Traits, _Allocator>&, const _CharT*)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/basic_string.h:3718: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::__cxx11::basic_string<_CharT, _Traits, _Allocator>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/basic_string.h:3765: note: candidate: 'template<class _CharT, class _Traits, class _Alloc> bool std::operator==(const _CharT*, const __cxx11::basic_string<_CharT, _Traits, _Allocator>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/basic_string.h:3765: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   mismatched types 'const _CharT*' and 'std::function<void()>'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/memory_resource.h:47,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/string:58:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/tuple:1905: note: candidate: 'template<class ... _TElements, class ... _UElements> constexpr bool std::operator==(const tuple<_UTypes ...>&, const tuple<_UTypes ...>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/tuple:1905: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::tuple<_UTypes ...>'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:59,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/stdc++.h:53:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/std_function.h:737: note: candidate: 'template<class _Res, class ... _Args> bool std::operator==(const function<_Res(_ArgTypes ...)>&, nullptr_t)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/std_function.h:737: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   cannot convert 'f2' (type 'std::function<void()>') to type 'std::nullptr_t'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/std_function.h:744: note: candidate: 'template<class _Res, class ... _Args> bool std::operator==(nullptr_t, const function<_Res(_ArgTypes ...)>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/std_function.h:744: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   cannot convert 'f1' (type 'std::function<void()>') to type 'std::nullptr_t'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/unordered_map:41,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:63:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unordered_map.h:2139: note: candidate: 'template<class _Key1, class _Tp1, class _Hash1, class _Pred1, class _Alloc1> bool std::operator==(const unordered_map<_Key1, _Tp1, _Hash1, _Pred1, _Alloc1>&, const unordered_map<_Key1, _Tp1, _Hash1, _Pred1, _Alloc1>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unordered_map.h:2139: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::unordered_map<_Key1, _Tp1, _Hash1, _Pred1, _Alloc1>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unordered_map.h:2153: note: candidate: 'template<class _Key1, class _Tp1, class _Hash1, class _Pred1, class _Alloc1> bool std::operator==(const unordered_multimap<_Key1, _Tp1, _Hash1, _Pred1, _Alloc1>&, const unordered_multimap<_Key1, _Tp1, _Hash1, _Pred1, _Alloc1>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unordered_map.h:2153: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::unordered_multimap<_Key1, _Tp1, _Hash1, _Pred1, _Alloc1>'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/vector:66,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:64:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_vector.h:2035: note: candidate: 'template<class _Tp, class _Alloc> bool std::operator==(const vector<_Tp, _Alloc>&, const vector<_Tp, _Alloc>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_vector.h:2035: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::vector<_Tp, _Alloc>'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/functional:65:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/array:297: note: candidate: 'template<class _Tp, long unsigned int _Nm> bool std::operator==(const array<_Tp, _Nm>&, const array<_Tp, _Nm>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/array:297: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::array<_Tp, _Nm>'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/iterator:66,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/stdc++.h:54:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h:234: note: candidate: 'template<class _CharT, class _Traits> bool std::operator==(const istreambuf_iterator<_CharT, _Traits>&, const istreambuf_iterator<_CharT, _Traits>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h:234: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::istreambuf_iterator<_CharT, _Traits>'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/memory:78,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/stdc++.h:56:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h:830: note: candidate: 'template<class _Tp, class _Dp, class _Up, class _Ep> bool std::operator==(const unique_ptr<_Tp, _Dp>&, const unique_ptr<_Up, _Ep>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h:830: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::unique_ptr<_Tp, _Dp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h:838: note: candidate: 'template<class _Tp, class _Dp> bool std::operator==(const unique_ptr<_Tp, _Dp>&, nullptr_t)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h:838: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::unique_ptr<_Tp, _Dp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h:846: note: candidate: 'template<class _Tp, class _Dp> bool std::operator==(nullptr_t, const unique_ptr<_Tp, _Dp>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h:846: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::unique_ptr<_Tp, _Dp>'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/shared_ptr.h:53,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/memory:80:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/shared_ptr_base.h:1793: note: candidate: 'template<class _Tp1, class _Tp2, __gnu_cxx::_Lock_policy _Lp> bool std::operator==(const __shared_ptr<_Tp1, _Lp>&, const __shared_ptr<_Tp2, _Lp>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/shared_ptr_base.h:1793: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::__shared_ptr<_Tp1, _Lp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/shared_ptr_base.h:1799: note: candidate: 'template<class _Tp, __gnu_cxx::_Lock_policy _Lp> bool std::operator==(const __shared_ptr<_Tp, _Lp>&, nullptr_t)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/shared_ptr_base.h:1799: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::__shared_ptr<_Tp, _Lp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/shared_ptr_base.h:1819: note: candidate: 'template<class _Tp, __gnu_cxx::_Lock_policy _Lp> bool std::operator==(nullptr_t, const __shared_ptr<_Tp, _Lp>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/shared_ptr_base.h:1819: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::__shared_ptr<_Tp, _Lp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/shared_ptr.h:555: note: candidate: 'template<class _Tp, class _Up> bool std::operator==(const shared_ptr<_Tp>&, const shared_ptr<_Tp>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/shared_ptr.h:555: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::shared_ptr<_Tp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/shared_ptr.h:561: note: candidate: 'template<class _Tp> bool std::operator==(const shared_ptr<_Tp>&, nullptr_t)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/shared_ptr.h:561: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::shared_ptr<_Tp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/shared_ptr.h:582: note: candidate: 'template<class _Tp> bool std::operator==(nullptr_t, const shared_ptr<_Tp>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/shared_ptr.h:582: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::shared_ptr<_Tp>'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/stdc++.h:67:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/scoped_allocator:498: note: candidate: 'template<class _OutA1, class _OutA2, class ... _InA> bool std::operator==(const scoped_allocator_adaptor<_OutA1, _InA ...>&, const scoped_allocator_adaptor<_InnerHead, _InnerTail ...>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/scoped_allocator:498: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::scoped_allocator_adaptor<_OutA1, _InA ...>'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/stdc++.h:80:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/optional:1222: note: candidate: 'template<class _Tp, class _Up> constexpr std::__optional_eq_t<_Tp, _Up> std::operator==(const optional<_Tp>&, const optional<_Up>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/optional:1222: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::optional<_Tp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/optional:1282: note: candidate: 'template<class _Tp> constexpr bool std::operator==(const optional<_Tp>&, nullopt_t)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/optional:1282: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::optional<_Tp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/optional:1293: note: candidate: 'template<class _Tp> constexpr bool std::operator==(nullopt_t, const optional<_Tp>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/optional:1293: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::optional<_Tp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/optional:1350: note: candidate: 'template<class _Tp, class _Up> constexpr std::__optional_eq_t<_Tp, _Up> std::operator==(const optional<_Tp>&, const _Up&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/optional:1350: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::optional<_Tp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/optional:1356: note: candidate: 'template<class _Tp, class _Up> constexpr std::__optional_eq_t<_Up, _Tp> std::operator==(const _Up&, const optional<_Tp>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/optional:1356: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::optional<_Tp>'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/stdc++.h:81:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/variant:1242: note: candidate: 'template<class ... _Types> constexpr bool std::operator==(const variant<_Types ...>&, const variant<_Types ...>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/variant:1242: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::variant<_Types ...>'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/ccomplex:39,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/stdc++.h:128:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/complex:467: note: candidate: 'template<class _Tp> constexpr bool std::operator==(const complex<_Tp>&, const complex<_Tp>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/complex:467: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::complex<_Tp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/complex:472: note: candidate: 'template<class _Tp> constexpr bool std::operator==(const complex<_Tp>&, const _Tp&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/complex:472: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::complex<_Tp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/complex:478: note: candidate: 'template<class _Tp> constexpr bool std::operator==(const _Tp&, const complex<_Tp>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/complex:478: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::complex<_Tp>'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/deque:66,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/stdc++.h:140:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_deque.h:2290: note: candidate: 'template<class _Tp, class _Alloc> bool std::operator==(const deque<_Tp, _Alloc>&, const deque<_Tp, _Alloc>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_deque.h:2290: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::deque<_Tp, _Alloc>'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/list:65,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/stdc++.h:151:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_list.h:2123: note: candidate: 'template<class _Tp, class _Alloc> bool std::operator==(const __cxx11::list<_Tp, _Alloc>&, const __cxx11::list<_Tp, _Alloc>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_list.h:2123: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::__cxx11::list<_Tp, _Alloc>'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/map:63,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/stdc++.h:153:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_map.h:1511: note: candidate: 'template<class _Key, class _Tp, class _Compare, class _Alloc> bool std::operator==(const map<_Key, _Tp, _Compare, _Allocator>&, const map<_Key, _Tp, _Compare, _Allocator>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_map.h:1511: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::map<_Key, _Tp, _Compare, _Allocator>'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/map:64:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_multimap.h:1132: note: candidate: 'template<class _Key, class _Tp, class _Compare, class _Alloc> bool std::operator==(const multimap<_Key, _Tp, _Compare, _Allocator>&, const multimap<_Key, _Tp, _Compare, _Allocator>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_multimap.h:1132: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::multimap<_Key, _Tp, _Compare, _Allocator>'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/queue:66,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/stdc++.h:158:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_queue.h:380: note: candidate: 'template<class _Tp, class _Seq> bool std::operator==(const queue<_Tp, _Seq>&, const queue<_Tp, _Seq>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_queue.h:380: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::queue<_Tp, _Seq>'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/set:63,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/stdc++.h:159:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_set.h:985: note: candidate: 'template<class _Key, class _Compare, class _Alloc> bool std::operator==(const set<_Key, _Compare, _Allocator>&, const set<_Key, _Compare, _Allocator>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_set.h:985: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::set<_Key, _Compare, _Allocator>'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/set:64:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_multiset.h:972: note: candidate: 'template<class _Key, class _Compare, class _Alloc> bool std::operator==(const multiset<_Key, _Compare, _Allocator>&, const multiset<_Key, _Compare, _Allocator>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_multiset.h:972: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::multiset<_Key, _Compare, _Allocator>'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/stack:63,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/stdc++.h:161:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_stack.h:356: note: candidate: 'template<class _Tp, class _Seq> bool std::operator==(const stack<_Tp, _Seq>&, const stack<_Tp, _Seq>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_stack.h:356: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::stack<_Tp, _Seq>'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/valarray:605,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/stdc++.h:167:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:417: note: candidate: 'template<class _Dom1, class _Dom2> std::_Expr<std::__detail::_BinClos<std::__equal_to, std::_Expr, std::_Expr, _Dom1, _Dom2>, typename std::__fun<std::__equal_to, typename _Dom1::value_type>::result_type> std::operator==(const _Expr<_Dom1, typename _Dom1::value_type>&, const _Expr<_Dom2, typename _Dom2::value_type>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:417: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::_Expr<_Dom1, typename _Dom1::value_type>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:417: note: candidate: 'template<class _Dom> std::_Expr<std::__detail::_BinClos<std::__equal_to, std::_Expr, std::_Constant, _Dom, typename _Dom::value_type>, typename std::__fun<std::__equal_to, typename _Dom1::value_type>::result_type> std::operator==(const _Expr<_Dom1, typename _Dom1::value_type>&, const typename _Dom::value_type&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:417: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::_Expr<_Dom1, typename _Dom1::value_type>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:417: note: candidate: 'template<class _Dom> std::_Expr<std::__detail::_BinClos<std::__equal_to, std::_Constant, std::_Expr, typename _Dom::value_type, _Dom>, typename std::__fun<std::__equal_to, typename _Dom1::value_type>::result_type> std::operator==(const typename _Dom::value_type&, const _Expr<_Dom1, typename _Dom1::value_type>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:417: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::_Expr<_Dom1, typename _Dom1::value_type>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:417: note: candidate: 'template<class _Dom> std::_Expr<std::__detail::_BinClos<std::__equal_to, std::_Expr, std::_ValArray, _Dom, typename _Dom::value_type>, typename std::__fun<std::__equal_to, typename _Dom1::value_type>::result_type> std::operator==(const _Expr<_Dom1, typename _Dom1::value_type>&, const valarray<typename _Dom::value_type>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:417: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::_Expr<_Dom1, typename _Dom1::value_type>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:417: note: candidate: 'template<class _Dom> std::_Expr<std::__detail::_BinClos<std::__equal_to, std::_ValArray, std::_Expr, typename _Dom::value_type, _Dom>, typename std::__fun<std::__equal_to, typename _Dom1::value_type>::result_type> std::operator==(const valarray<typename _Dom::value_type>&, const _Expr<_Dom1, typename _Dom1::value_type>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:417: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::_Expr<_Dom1, typename _Dom1::value_type>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/valarray:1201: note: candidate: 'template<class _Tp> std::_Expr<std::__detail::_BinClos<std::__equal_to, std::_ValArray, std::_ValArray, _Tp, _Tp>, typename std::__fun<std::__equal_to, _Tp>::result_type> std::operator==(const valarray<_Tp>&, const valarray<_Tp>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/valarray:1201: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::valarray<_Tp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/valarray:1201: note: candidate: 'template<class _Tp> std::_Expr<std::__detail::_BinClos<std::__equal_to, std::_ValArray, std::_Constant, _Tp, _Tp>, typename std::__fun<std::__equal_to, _Tp>::result_type> std::operator==(const valarray<_Tp>&, const typename valarray<_Tp>::value_type&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/valarray:1201: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::valarray<_Tp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/valarray:1201: note: candidate: 'template<class _Tp> std::_Expr<std::__detail::_BinClos<std::__equal_to, std::_Constant, std::_ValArray, _Tp, _Tp>, typename std::__fun<std::__equal_to, _Tp>::result_type> std::operator==(const typename valarray<_Tp>::value_type&, const valarray<_Tp>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/valarray:1201: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::valarray<_Tp>'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/forward_list:42,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/stdc++.h:176:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/forward_list.tcc:393: note: candidate: 'template<class _Tp, class _Alloc> bool std::operator==(const forward_list<_Tp, _Alloc>&, const forward_list<_Tp, _Alloc>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/forward_list.tcc:393: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::forward_list<_Tp, _Alloc>'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/random:53,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/stdc++.h:180:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.tcc:1905: note: candidate: 'template<class _RealType1> bool std::operator==(const normal_distribution<_RealType>&, const normal_distribution<_RealType>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.tcc:1905: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::normal_distribution<_RealType>'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/unordered_set:41,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/stdc++.h:190:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unordered_set.h:1809: note: candidate: 'template<class _Value1, class _Hash1, class _Pred1, class _Alloc1> bool std::operator==(const unordered_set<_Value1, _Hash1, _Pred1, _Alloc1>&, const unordered_set<_Value1, _Hash1, _Pred1, _Alloc1>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unordered_set.h:1809: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::unordered_set<_Value1, _Hash1, _Pred1, _Alloc1>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unordered_set.h:1823: note: candidate: 'template<class _Value1, class _Hash1, class _Pred1, class _Alloc1> bool std::operator==(const unordered_multiset<_Value1, _Hash1, _Pred1, _Alloc1>&, const unordered_multiset<_Value1, _Hash1, _Pred1, _Alloc1>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unordered_set.h:1823: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:29: note:   'std::function<void()>' is not derived from 'const std::unordered_multiset<_Value1, _Hash1, _Pred1, _Alloc1>'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/ios_base.h:46,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/streambuf:43,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h:35:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error:449: note: candidate: 'bool std::operator==(const error_code&, const error_code&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error:449: note:   no known conversion for argument 1 from 'std::function<void()>' to 'const std::error_code&'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error:465: note: candidate: 'bool std::operator==(const error_code&, const error_condition&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error:465: note:   no known conversion for argument 1 from 'std::function<void()>' to 'const std::error_code&'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error:480: note: candidate: 'bool std::operator==(const error_condition&, const error_condition&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error:480: note:   no known conversion for argument 1 from 'std::function<void()>' to 'const std::error_condition&'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error:517: note: candidate: 'bool std::operator==(const error_condition&, const error_code&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error:517: note:   no known conversion for argument 1 from 'std::function<void()>' to 'const std::error_condition&'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/variant:1249: note: candidate: 'constexpr bool std::operator==(monostate, monostate)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/variant:1249: note:   no known conversion for argument 1 from 'std::function<void()>' to 'std::monostate'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/future:51,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/stdc++.h:177:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/std_thread.h:324: note: candidate: 'bool std::operator==(thread::id, thread::id)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/std_thread.h:324: note:   no known conversion for argument 1 from 'std::function<void()>' to 'std::thread::id'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: error: no match for 'operator!=' in 'f1 != f2' (operand types are 'std::function<void()>' and 'std::function<void()>')
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note: candidate: 'operator!=(int, int)' (built-in)
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   no known conversion for argument 2 from 'std::function<void()>' to 'int'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/regex.h:1122: note: candidate: 'template<class _BiIter> bool std::__cxx11::operator!=(const sub_match<_BiIter>&, const sub_match<_BiIter>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/regex.h:1122: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::__cxx11::sub_match<_BiIter>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/regex.h:1202: note: candidate: 'template<class _Bi_iter, class _Ch_traits, class _Ch_alloc> bool std::__cxx11::operator!=(__sub_match_string<_Bi_iter, _Ch_traits, _Ch_alloc>&, const sub_match<_BiIter>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/regex.h:1202: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'std::__cxx11::__sub_match_string<_Bi_iter, _Ch_traits, _Ch_alloc>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/regex.h:1295: note: candidate: 'template<class _Bi_iter, class _Ch_traits, class _Ch_alloc> bool std::__cxx11::operator!=(const sub_match<_BiIter>&, __sub_match_string<_Bi_iter, _Ch_traits, _Ch_alloc>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/regex.h:1295: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::__cxx11::sub_match<_BiIter>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/regex.h:1369: note: candidate: 'template<class _Bi_iter> bool std::__cxx11::operator!=(const typename std::iterator_traits<_Iter>::value_type*, const sub_match<_BiIter>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/regex.h:1369: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::__cxx11::sub_match<_BiIter>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/regex.h:1463: note: candidate: 'template<class _Bi_iter> bool std::__cxx11::operator!=(const sub_match<_BiIter>&, const typename std::iterator_traits<_Iter>::value_type*)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/regex.h:1463: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::__cxx11::sub_match<_BiIter>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/regex.h:1537: note: candidate: 'template<class _Bi_iter> bool std::__cxx11::operator!=(const typename std::iterator_traits<_Iter>::value_type&, const sub_match<_BiIter>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/regex.h:1537: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::__cxx11::sub_match<_BiIter>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/regex.h:1637: note: candidate: 'template<class _Bi_iter> bool std::__cxx11::operator!=(const sub_match<_BiIter>&, const typename std::iterator_traits<_Iter>::value_type&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/regex.h:1637: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::__cxx11::sub_match<_BiIter>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/regex.h:2203: note: candidate: 'template<class _Bi_iter, class _Alloc> bool std::__cxx11::operator!=(const match_results<_BiIter, _Alloc>&, const match_results<_BiIter, _Alloc>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/regex.h:2203: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::__cxx11::match_results<_BiIter, _Alloc>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_pair.h:842: note: candidate: 'template<class _T1, class _T2> constexpr bool std::operator!=(const pair<_T1, _T2>&, const pair<_T1, _T2>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_pair.h:842: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::pair<_T1, _T2>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h:458: note: candidate: 'template<class _Iterator> constexpr bool std::operator!=(const reverse_iterator<_Iterator>&, const reverse_iterator<_Iterator>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h:458: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::reverse_iterator<_Iterator>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h:503: note: candidate: 'template<class _IteratorL, class _IteratorR> constexpr bool std::operator!=(const reverse_iterator<_Iterator>&, const reverse_iterator<_IteratorR>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h:503: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::reverse_iterator<_Iterator>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h:1693: note: candidate: 'template<class _IteratorL, class _IteratorR> constexpr bool std::operator!=(const move_iterator<_IteratorL>&, const move_iterator<_IteratorR>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h:1693: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::move_iterator<_IteratorL>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h:1759: note: candidate: 'template<class _Iterator> constexpr bool std::operator!=(const move_iterator<_IteratorL>&, const move_iterator<_IteratorL>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h:1759: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::move_iterator<_IteratorL>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/postypes.h:197: note: candidate: 'template<class _StateT> bool std::operator!=(const fpos<_StateT>&, const fpos<_StateT>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/postypes.h:197: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::fpos<_StateT>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/allocator.h:245: note: candidate: 'template<class _T1, class _T2> bool std::operator!=(const allocator<_CharT>&, const allocator<_T2>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/allocator.h:245: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::allocator<_CharT>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/string_view:648: note: candidate: 'template<class _CharT, class _Traits> constexpr bool std::operator!=(basic_string_view<_CharT, _Traits>, basic_string_view<_CharT, _Traits>)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/string_view:648: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'std::basic_string_view<_CharT, _Traits>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/string_view:655: note: candidate: 'template<class _CharT, class _Traits> constexpr bool std::operator!=(basic_string_view<_CharT, _Traits>, __type_identity_t<basic_string_view<_CharT, _Traits> >)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/string_view:655: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'std::basic_string_view<_CharT, _Traits>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/string_view:663: note: candidate: 'template<class _CharT, class _Traits> constexpr bool std::operator!=(__type_identity_t<basic_string_view<_CharT, _Traits> >, basic_string_view<_CharT, _Traits>)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/string_view:663: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'std::basic_string_view<_CharT, _Traits>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/basic_string.h:3779: note: candidate: 'template<class _CharT, class _Traits, class _Alloc> bool std::operator!=(const __cxx11::basic_string<_CharT, _Traits, _Allocator>&, const __cxx11::basic_string<_CharT, _Traits, _Allocator>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/basic_string.h:3779: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::__cxx11::basic_string<_CharT, _Traits, _Allocator>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/basic_string.h:3793: note: candidate: 'template<class _CharT, class _Traits, class _Alloc> bool std::operator!=(const _CharT*, const __cxx11::basic_string<_CharT, _Traits, _Allocator>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/basic_string.h:3793: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   mismatched types 'const _CharT*' and 'std::function<void()>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/basic_string.h:3806: note: candidate: 'template<class _CharT, class _Traits, class _Alloc> bool std::operator!=(const __cxx11::basic_string<_CharT, _Traits, _Allocator>&, const _CharT*)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/basic_string.h:3806: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::__cxx11::basic_string<_CharT, _Traits, _Allocator>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/tuple:1960: note: candidate: 'template<class ... _TElements, class ... _UElements> constexpr bool std::operator!=(const tuple<_UTypes ...>&, const tuple<_UTypes ...>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/tuple:1960: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::tuple<_UTypes ...>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/std_function.h:755: note: candidate: 'template<class _Res, class ... _Args> bool std::operator!=(const function<_Res(_ArgTypes ...)>&, nullptr_t)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/std_function.h:755: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   cannot convert 'f2' (type 'std::function<void()>') to type 'std::nullptr_t'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/std_function.h:761: note: candidate: 'template<class _Res, class ... _Args> bool std::operator!=(nullptr_t, const function<_Res(_ArgTypes ...)>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/std_function.h:761: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   cannot convert 'f1' (type 'std::function<void()>') to type 'std::nullptr_t'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unordered_map.h:2146: note: candidate: 'template<class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> bool std::operator!=(const unordered_map<_Key1, _Tp1, _Hash1, _Pred1, _Alloc1>&, const unordered_map<_Key1, _Tp1, _Hash1, _Pred1, _Alloc1>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unordered_map.h:2146: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::unordered_map<_Key1, _Tp1, _Hash1, _Pred1, _Alloc1>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unordered_map.h:2160: note: candidate: 'template<class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> bool std::operator!=(const unordered_multimap<_Key1, _Tp1, _Hash1, _Pred1, _Alloc1>&, const unordered_multimap<_Key1, _Tp1, _Hash1, _Pred1, _Alloc1>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unordered_map.h:2160: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::unordered_multimap<_Key1, _Tp1, _Hash1, _Pred1, _Alloc1>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_vector.h:2081: note: candidate: 'template<class _Tp, class _Alloc> bool std::operator!=(const vector<_Tp, _Alloc>&, const vector<_Tp, _Alloc>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_vector.h:2081: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::vector<_Tp, _Alloc>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/array:326: note: candidate: 'template<class _Tp, long unsigned int _Nm> bool std::operator!=(const array<_Tp, _Nm>&, const array<_Tp, _Nm>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/array:326: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::array<_Tp, _Nm>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h:242: note: candidate: 'template<class _CharT, class _Traits> bool std::operator!=(const istreambuf_iterator<_CharT, _Traits>&, const istreambuf_iterator<_CharT, _Traits>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/streambuf_iterator.h:242: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::istreambuf_iterator<_CharT, _Traits>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h:854: note: candidate: 'template<class _Tp, class _Dp, class _Up, class _Ep> bool std::operator!=(const unique_ptr<_Tp, _Dp>&, const unique_ptr<_Up, _Ep>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h:854: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::unique_ptr<_Tp, _Dp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h:862: note: candidate: 'template<class _Tp, class _Dp> bool std::operator!=(const unique_ptr<_Tp, _Dp>&, nullptr_t)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h:862: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::unique_ptr<_Tp, _Dp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h:869: note: candidate: 'template<class _Tp, class _Dp> bool std::operator!=(nullptr_t, const unique_ptr<_Tp, _Dp>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h:869: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::unique_ptr<_Tp, _Dp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/shared_ptr_base.h:1824: note: candidate: 'template<class _Tp1, class _Tp2, __gnu_cxx::_Lock_policy _Lp> bool std::operator!=(const __shared_ptr<_Tp1, _Lp>&, const __shared_ptr<_Tp2, _Lp>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/shared_ptr_base.h:1824: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::__shared_ptr<_Tp1, _Lp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/shared_ptr_base.h:1830: note: candidate: 'template<class _Tp, __gnu_cxx::_Lock_policy _Lp> bool std::operator!=(const __shared_ptr<_Tp, _Lp>&, nullptr_t)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/shared_ptr_base.h:1830: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::__shared_ptr<_Tp, _Lp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/shared_ptr_base.h:1835: note: candidate: 'template<class _Tp, __gnu_cxx::_Lock_policy _Lp> bool std::operator!=(nullptr_t, const __shared_ptr<_Tp, _Lp>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/shared_ptr_base.h:1835: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::__shared_ptr<_Tp, _Lp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/shared_ptr.h:588: note: candidate: 'template<class _Tp, class _Up> bool std::operator!=(const shared_ptr<_Tp>&, const shared_ptr<_Tp>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/shared_ptr.h:588: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::shared_ptr<_Tp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/shared_ptr.h:594: note: candidate: 'template<class _Tp> bool std::operator!=(const shared_ptr<_Tp>&, nullptr_t)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/shared_ptr.h:594: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::shared_ptr<_Tp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/shared_ptr.h:600: note: candidate: 'template<class _Tp> bool std::operator!=(nullptr_t, const shared_ptr<_Tp>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/shared_ptr.h:600: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::shared_ptr<_Tp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/scoped_allocator:509: note: candidate: 'template<class _OutA1, class _OutA2, class ... _InA> bool std::operator!=(const scoped_allocator_adaptor<_OutA1, _InA ...>&, const scoped_allocator_adaptor<_InnerHead, _InnerTail ...>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/scoped_allocator:509: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::scoped_allocator_adaptor<_OutA1, _InA ...>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/optional:1231: note: candidate: 'template<class _Tp, class _Up> constexpr std::__optional_ne_t<_Tp, _Up> std::operator!=(const optional<_Tp>&, const optional<_Up>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/optional:1231: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::optional<_Tp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/optional:1298: note: candidate: 'template<class _Tp> constexpr bool std::operator!=(const optional<_Tp>&, nullopt_t)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/optional:1298: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::optional<_Tp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/optional:1303: note: candidate: 'template<class _Tp> constexpr bool std::operator!=(nullopt_t, const optional<_Tp>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/optional:1303: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::optional<_Tp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/optional:1362: note: candidate: 'template<class _Tp, class _Up> constexpr std::__optional_ne_t<_Tp, _Up> std::operator!=(const optional<_Tp>&, const _Up&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/optional:1362: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::optional<_Tp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/optional:1368: note: candidate: 'template<class _Tp, class _Up> constexpr std::__optional_ne_t<_Up, _Tp> std::operator!=(const _Up&, const optional<_Tp>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/optional:1368: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::optional<_Tp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/variant:1243: note: candidate: 'template<class ... _Types> constexpr bool std::operator!=(const variant<_Types ...>&, const variant<_Types ...>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/variant:1243: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::variant<_Types ...>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/complex:486: note: candidate: 'template<class _Tp> constexpr bool std::operator!=(const complex<_Tp>&, const complex<_Tp>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/complex:486: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::complex<_Tp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/complex:491: note: candidate: 'template<class _Tp> constexpr bool std::operator!=(const complex<_Tp>&, const _Tp&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/complex:491: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::complex<_Tp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/complex:496: note: candidate: 'template<class _Tp> constexpr bool std::operator!=(const _Tp&, const complex<_Tp>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/complex:496: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::complex<_Tp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_deque.h:2338: note: candidate: 'template<class _Tp, class _Alloc> bool std::operator!=(const deque<_Tp, _Alloc>&, const deque<_Tp, _Alloc>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_deque.h:2338: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::deque<_Tp, _Alloc>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_list.h:2188: note: candidate: 'template<class _Tp, class _Alloc> bool std::operator!=(const __cxx11::list<_Tp, _Alloc>&, const __cxx11::list<_Tp, _Alloc>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_list.h:2188: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::__cxx11::list<_Tp, _Alloc>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_map.h:1556: note: candidate: 'template<class _Key, class _Tp, class _Compare, class _Alloc> bool std::operator!=(const map<_Key, _Tp, _Compare, _Allocator>&, const map<_Key, _Tp, _Compare, _Allocator>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_map.h:1556: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::map<_Key, _Tp, _Compare, _Allocator>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_multimap.h:1177: note: candidate: 'template<class _Key, class _Tp, class _Compare, class _Alloc> bool std::operator!=(const multimap<_Key, _Tp, _Compare, _Allocator>&, const multimap<_Key, _Tp, _Compare, _Allocator>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_multimap.h:1177: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::multimap<_Key, _Tp, _Compare, _Allocator>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_queue.h:406: note: candidate: 'template<class _Tp, class _Seq> bool std::operator!=(const queue<_Tp, _Seq>&, const queue<_Tp, _Seq>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_queue.h:406: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::queue<_Tp, _Seq>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_set.h:1030: note: candidate: 'template<class _Key, class _Compare, class _Alloc> bool std::operator!=(const set<_Key, _Compare, _Allocator>&, const set<_Key, _Compare, _Allocator>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_set.h:1030: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::set<_Key, _Compare, _Allocator>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_multiset.h:1017: note: candidate: 'template<class _Key, class _Compare, class _Alloc> bool std::operator!=(const multiset<_Key, _Compare, _Allocator>&, const multiset<_Key, _Compare, _Allocator>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_multiset.h:1017: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::multiset<_Key, _Compare, _Allocator>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_stack.h:382: note: candidate: 'template<class _Tp, class _Seq> bool std::operator!=(const stack<_Tp, _Seq>&, const stack<_Tp, _Seq>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_stack.h:382: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::stack<_Tp, _Seq>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:418: note: candidate: 'template<class _Dom1, class _Dom2> std::_Expr<std::__detail::_BinClos<std::__not_equal_to, std::_Expr, std::_Expr, _Dom1, _Dom2>, typename std::__fun<std::__not_equal_to, typename _Dom1::value_type>::result_type> std::operator!=(const _Expr<_Dom1, typename _Dom1::value_type>&, const _Expr<_Dom2, typename _Dom2::value_type>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:418: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::_Expr<_Dom1, typename _Dom1::value_type>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:418: note: candidate: 'template<class _Dom> std::_Expr<std::__detail::_BinClos<std::__not_equal_to, std::_Expr, std::_Constant, _Dom, typename _Dom::value_type>, typename std::__fun<std::__not_equal_to, typename _Dom1::value_type>::result_type> std::operator!=(const _Expr<_Dom1, typename _Dom1::value_type>&, const typename _Dom::value_type&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:418: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::_Expr<_Dom1, typename _Dom1::value_type>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:418: note: candidate: 'template<class _Dom> std::_Expr<std::__detail::_BinClos<std::__not_equal_to, std::_Constant, std::_Expr, typename _Dom::value_type, _Dom>, typename std::__fun<std::__not_equal_to, typename _Dom1::value_type>::result_type> std::operator!=(const typename _Dom::value_type&, const _Expr<_Dom1, typename _Dom1::value_type>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:418: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::_Expr<_Dom1, typename _Dom1::value_type>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:418: note: candidate: 'template<class _Dom> std::_Expr<std::__detail::_BinClos<std::__not_equal_to, std::_Expr, std::_ValArray, _Dom, typename _Dom::value_type>, typename std::__fun<std::__not_equal_to, typename _Dom1::value_type>::result_type> std::operator!=(const _Expr<_Dom1, typename _Dom1::value_type>&, const valarray<typename _Dom::value_type>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:418: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::_Expr<_Dom1, typename _Dom1::value_type>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:418: note: candidate: 'template<class _Dom> std::_Expr<std::__detail::_BinClos<std::__not_equal_to, std::_ValArray, std::_Expr, typename _Dom::value_type, _Dom>, typename std::__fun<std::__not_equal_to, typename _Dom1::value_type>::result_type> std::operator!=(const valarray<typename _Dom::value_type>&, const _Expr<_Dom1, typename _Dom1::value_type>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/valarray_after.h:418: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::_Expr<_Dom1, typename _Dom1::value_type>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/valarray:1202: note: candidate: 'template<class _Tp> std::_Expr<std::__detail::_BinClos<std::__not_equal_to, std::_ValArray, std::_ValArray, _Tp, _Tp>, typename std::__fun<std::__not_equal_to, _Tp>::result_type> std::operator!=(const valarray<_Tp>&, const valarray<_Tp>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/valarray:1202: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::valarray<_Tp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/valarray:1202: note: candidate: 'template<class _Tp> std::_Expr<std::__detail::_BinClos<std::__not_equal_to, std::_ValArray, std::_Constant, _Tp, _Tp>, typename std::__fun<std::__not_equal_to, _Tp>::result_type> std::operator!=(const valarray<_Tp>&, const typename valarray<_Tp>::value_type&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/valarray:1202: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::valarray<_Tp>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/valarray:1202: note: candidate: 'template<class _Tp> std::_Expr<std::__detail::_BinClos<std::__not_equal_to, std::_Constant, std::_ValArray, _Tp, _Tp>, typename std::__fun<std::__not_equal_to, _Tp>::result_type> std::operator!=(const typename valarray<_Tp>::value_type&, const valarray<_Tp>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/valarray:1202: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::valarray<_Tp>'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/forward_list:40:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/forward_list.h:1503: note: candidate: 'template<class _Tp, class _Alloc> bool std::operator!=(const forward_list<_Tp, _Alloc>&, const forward_list<_Tp, _Alloc>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/forward_list.h:1503: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::forward_list<_Tp, _Alloc>'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/random:51:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:440: note: candidate: 'template<class _UIntType, _UIntType __a, _UIntType __c, _UIntType __m> bool std::operator!=(const linear_congruential_engine<_UIntType, __a, __c, __m>&, const linear_congruential_engine<_UIntType, __a, __c, __m>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:440: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::linear_congruential_engine<_UIntType, __a, __c, __m>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:679: note: candidate: 'template<class _UIntType, long unsigned int __w, long unsigned int __n, long unsigned int __m, long unsigned int __r, _UIntType __a, long unsigned int __u, _UIntType __d, long unsigned int __s, _UIntType __b, long unsigned int __t, _UIntType __c, long unsigned int __l, _UIntType __f> bool std::operator!=(const mersenne_twister_engine<_UIntType, __w, __n, __m, __r, __a, __u, __d, __s, __b, __t, __c, __l, __f>&, const mersenne_twister_engine<_UIntType, __w, __n, __m, __r, __a, __u, __d, __s, __b, __t, __c, __l, __f>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:679: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::mersenne_twister_engine<_UIntType, __w, __n, __m, __r, __a, __u, __d, __s, __b, __t, __c, __l, __f>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:882: note: candidate: 'template<class _UIntType, long unsigned int __w, long unsigned int __s, long unsigned int __r> bool std::operator!=(const subtract_with_carry_engine<_UIntType, __w, __s, __r>&, const subtract_with_carry_engine<_UIntType, __w, __s, __r>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:882: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::subtract_with_carry_engine<_UIntType, __w, __s, __r>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:1107: note: candidate: 'template<class _RandomNumberEngine, long unsigned int __p, long unsigned int __r> bool std::operator!=(const discard_block_engine<_RandomNumberEngine, __p, __r>&, const discard_block_engine<_RandomNumberEngine, __p, __r>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:1107: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::discard_block_engine<_RandomNumberEngine, __p, __r>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:1306: note: candidate: 'template<class _RandomNumberEngine, long unsigned int __w, class _UIntType> bool std::operator!=(const independent_bits_engine<_RandomNumberEngine, __w, _UIntType>&, const independent_bits_engine<_RandomNumberEngine, __w, _UIntType>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:1306: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::independent_bits_engine<_RandomNumberEngine, __w, _UIntType>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:1564: note: candidate: 'template<class _RandomNumberEngine, long unsigned int __k> bool std::operator!=(const shuffle_order_engine<_RandomNumberEngine, __k>&, const shuffle_order_engine<_RandomNumberEngine, __k>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:1564: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::shuffle_order_engine<_RandomNumberEngine, __k>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:1712: note: candidate: 'template<class _IntType> bool std::operator!=(const uniform_int_distribution<_IntType>&, const uniform_int_distribution<_IntType>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:1712: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::uniform_int_distribution<_IntType>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:1937: note: candidate: 'template<class _IntType> bool std::operator!=(const uniform_real_distribution<_IntType>&, const uniform_real_distribution<_IntType>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:1937: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::uniform_real_distribution<_IntType>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:2198: note: candidate: 'template<class _RealType> bool std::operator!=(const normal_distribution<_RealType>&, const normal_distribution<_RealType>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:2198: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::normal_distribution<_RealType>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:2412: note: candidate: 'template<class _RealType> bool std::operator!=(const lognormal_distribution<_RealType>&, const lognormal_distribution<_RealType>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:2412: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::lognormal_distribution<_RealType>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:2646: note: candidate: 'template<class _RealType> bool std::operator!=(const gamma_distribution<_RealType>&, const gamma_distribution<_RealType>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:2646: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::gamma_distribution<_RealType>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:2873: note: candidate: 'template<class _RealType> bool std::operator!=(const chi_squared_distribution<_RealType>&, const chi_squared_distribution<_RealType>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:2873: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::chi_squared_distribution<_RealType>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:3050: note: candidate: 'template<class _RealType> bool std::operator!=(const cauchy_distribution<_RealType>&, const cauchy_distribution<_RealType>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:3050: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::cauchy_distribution<_RealType>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:3318: note: candidate: 'template<class _RealType> bool std::operator!=(const fisher_f_distribution<_RealType>&, const fisher_f_distribution<_RealType>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:3318: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::fisher_f_distribution<_RealType>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:3544: note: candidate: 'template<class _RealType> bool std::operator!=(const student_t_distribution<_RealType>&, const student_t_distribution<_RealType>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:3544: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::student_t_distribution<_RealType>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:4014: note: candidate: 'template<class _IntType> bool std::operator!=(const binomial_distribution<_IntType>&, const binomial_distribution<_IntType>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:4014: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::binomial_distribution<_IntType>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:4196: note: candidate: 'template<class _IntType> bool std::operator!=(const geometric_distribution<_IntType>&, const geometric_distribution<_IntType>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:4196: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::geometric_distribution<_IntType>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:4454: note: candidate: 'template<class _IntType> bool std::operator!=(const negative_binomial_distribution<_IntType>&, const negative_binomial_distribution<_IntType>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:4454: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::negative_binomial_distribution<_IntType>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:4683: note: candidate: 'template<class _IntType> bool std::operator!=(const poisson_distribution<_IntType>&, const poisson_distribution<_IntType>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:4683: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::poisson_distribution<_IntType>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:4877: note: candidate: 'template<class _RealType> bool std::operator!=(const exponential_distribution<_RealType>&, const exponential_distribution<_RealType>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:4877: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::exponential_distribution<_RealType>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:5091: note: candidate: 'template<class _RealType> bool std::operator!=(const weibull_distribution<_RealType>&, const weibull_distribution<_RealType>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:5091: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::weibull_distribution<_RealType>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:5305: note: candidate: 'template<class _RealType> bool std::operator!=(const extreme_value_distribution<_RealType>&, const extreme_value_distribution<_RealType>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:5305: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::extreme_value_distribution<_RealType>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:5574: note: candidate: 'template<class _IntType> bool std::operator!=(const discrete_distribution<_IntType>&, const discrete_distribution<_IntType>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:5574: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::discrete_distribution<_IntType>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:5848: note: candidate: 'template<class _RealType> bool std::operator!=(const piecewise_constant_distribution<_RealType>&, const piecewise_constant_distribution<_RealType>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:5848: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::piecewise_constant_distribution<_RealType>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:6124: note: candidate: 'template<class _RealType> bool std::operator!=(const piecewise_linear_distribution<_RealType>&, const piecewise_linear_distribution<_RealType>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:6124: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::piecewise_linear_distribution<_RealType>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unordered_set.h:1816: note: candidate: 'template<class _Value, class _Hash, class _Pred, class _Alloc> bool std::operator!=(const unordered_set<_Value1, _Hash1, _Pred1, _Alloc1>&, const unordered_set<_Value1, _Hash1, _Pred1, _Alloc1>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unordered_set.h:1816: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::unordered_set<_Value1, _Hash1, _Pred1, _Alloc1>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unordered_set.h:1830: note: candidate: 'template<class _Value, class _Hash, class _Pred, class _Alloc> bool std::operator!=(const unordered_multiset<_Value1, _Hash1, _Pred1, _Alloc1>&, const unordered_multiset<_Value1, _Hash1, _Pred1, _Alloc1>&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unordered_set.h:1830: note:   template argument deduction/substitution failed:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc:30: note:   'std::function<void()>' is not derived from 'const std::unordered_multiset<_Value1, _Hash1, _Pred1, _Alloc1>'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error:525: note: candidate: 'bool std::operator!=(const error_code&, const error_code&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error:525: note:   no known conversion for argument 1 from 'std::function<void()>' to 'const std::error_code&'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error:530: note: candidate: 'bool std::operator!=(const error_code&, const error_condition&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error:530: note:   no known conversion for argument 1 from 'std::function<void()>' to 'const std::error_code&'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error:535: note: candidate: 'bool std::operator!=(const error_condition&, const error_code&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error:535: note:   no known conversion for argument 1 from 'std::function<void()>' to 'const std::error_condition&'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error:540: note: candidate: 'bool std::operator!=(const error_condition&, const error_condition&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/system_error:540: note:   no known conversion for argument 1 from 'std::function<void()>' to 'const std::error_condition&'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/variant:1281: note: candidate: 'constexpr bool std::operator!=(monostate, monostate)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/variant:1281: note:   no known conversion for argument 1 from 'std::function<void()>' to 'std::monostate'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:3735: note: candidate: 'bool std::operator!=(const bernoulli_distribution&, const bernoulli_distribution&)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/random.h:3735: note:   no known conversion for argument 1 from 'std::function<void()>' to 'const std::bernoulli_distribution&'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/stdc++.h:185:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/thread:71: note: candidate: 'bool std::operator!=(thread::id, thread::id)'
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/thread:71: note:   no known conversion for argument 1 from 'std::function<void()>' to 'std::thread::id'
+ status 1
+pid is 2021748 -2021748
+compiler exited with status 1
+pid is -1
+close result is 2021701 exp8 0 1
+output is In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/chrono:41,
+                 from /home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/stdc++.h:173,
+                 from <command-line>:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h: In instantiation of 'class std::chrono::duration<int, std::ratio<-1> >':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/duration/requirements/typedefs_neg3.cc:31:   required from here
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:528: error: static assertion failed: period must be positive
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/chrono.h:528: note: the comparison reduces to '(-1 > 0)'
+ status 1
+compiler exited with status 1
+Testing cons/move.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021752 -2021752
+Testing cons/55320.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021756 -2021756
+pid is -1
+output is  status 0
+spawning command ./8.exe 
+exp11 file8
+Testing from_chars/compare.cc
+extra_tool_flags are:  -std=gnu++2a
+doing compile
+pid is 2021767 -2021767
+pid is -1
+output is  status 0
+spawning command ./compare.exe 
+exp11 file8
+Testing from_chars/constexpr.cc
+extra_tool_flags are:  -std=gnu++23
+doing compile
+pid is 2021778 -2021778
+pid is -1
+output is  status 0
+Testing from_chars/pr105324.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021787 -2021787
+pid is -1
+output is  status 0
+spawning command ./3.exe 
+exp11 file8
+Testing function/4.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021793 -2021793
+pid is -1
+output is  status 0
+spawning command ./b.exe 
+exp11 file8
+Testing forward/c_neg.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021804 -2021804
+pid is -1
+output is  status 0
+spawning command ./1.exe 
+exp11 file8
+Testing from_chars/1_c++20_neg.cc
+extra_tool_flags are:  -std=gnu++2a
+doing compile
+pid is 2021816 -2021816
+pid is -1
+output is  status 0
+Testing function/69222.cc
+extra_tool_flags are:   -include bits/stdc++.h
+doing compile
+pid is 2021820 -2021820
+pid is -1
+close result is 2021816 exp8 0 1
+output is /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/from_chars/1_c++20_neg.cc: In function 'void test01(const char*, const char*)':
+/home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/from_chars/1_c++20_neg.cc:27: error: no matching function for call to 'from_chars(const char*&, const char*&, wchar_t&)'
+In file included from /home/kmatsui/Dropbox/2023_GSoC/gcc/libstdc++-v3/testsuite/20_util/from_chars/1_c++20_neg.cc:21:
+/home/kmatsui/Dropbox/2023_GSoC/gcc/objdir/x86_64-pc-linux-gnu/libstdc++-v3/include/charconv:678: note: candidate: 'std::from_ch[...]

[diff truncated at 524288 bytes]

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2023-07-10  0:18 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-07-10  0:18 [gcc(refs/users/kmatsui/heads/is_integral)] WIP: is_integral Ken Matsui

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).