view gcc/testsuite/g++.dg/cpp0x/nullptr39.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

// 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;
}