PR c++/81671 - nullptr_t template parameter
authorJason Merrill <jason@redhat.com>
Fri, 11 Aug 2017 05:35:39 +0000 (01:35 -0400)
committerJason Merrill <jason@gcc.gnu.org>
Fri, 11 Aug 2017 05:35:39 +0000 (01:35 -0400)
* pt.c (convert_nontype_argument): Fix nullptr_t check.

From-SVN: r251046

gcc/cp/ChangeLog
gcc/cp/pt.c
gcc/testsuite/g++.dg/cpp0x/nullptr39.C [new file with mode: 0644]

index 792a42ad14adf47a46bb12bb23f46ca07fba214d..0115f68cde651566ffdc916e03fcb96b8ca2ef82 100644 (file)
@@ -1,3 +1,8 @@
+2017-08-11  Jason Merrill  <jason@redhat.com>
+
+       PR c++/81671 - nullptr_t template parameter
+       * pt.c (convert_nontype_argument): Fix nullptr_t check.
+
 2017-08-10  Jason Merrill  <jason@redhat.com>
 
        PR c++/81359 - Unparsed NSDMI error from SFINAE context.
index 0f899b9edecb45b5dafd79ea13415338de6f8b6f..bf1f75de1e77b06e59ed3d7a21889f4a295b1a1b 100644 (file)
@@ -6879,7 +6879,7 @@ convert_nontype_argument (tree type, tree expr, tsubst_flags_t complain)
     }
   else if (NULLPTR_TYPE_P (type))
     {
-      if (expr != nullptr_node)
+      if (!NULLPTR_TYPE_P (TREE_TYPE (expr)))
        {
          if (complain & tf_error)
            error ("%qE is not a valid template argument for type %qT "
diff --git a/gcc/testsuite/g++.dg/cpp0x/nullptr39.C b/gcc/testsuite/g++.dg/cpp0x/nullptr39.C
new file mode 100644 (file)
index 0000000..a34a6af
--- /dev/null
@@ -0,0 +1,15 @@
+// PR c++/81671
+// { dg-do compile { target c++11 } }
+
+namespace std { typedef decltype(nullptr) nullptr_t; }
+
+template<class R, class CB> struct Bar
+{};
+template<class R> struct Bar<R, std::nullptr_t>
+{
+    template<std::nullptr_t> struct Bind { constexpr static int const cb = 0; };
+};
+int foo()
+{
+  return Bar<int, decltype(nullptr)>::Bind<nullptr>::cb;
+}