]> gcc.gnu.org Git - gcc.git/blame - gcc/testsuite/g++.dg/cpp0x/nullptr41.C
PR c++/92590 - wrong handling of inherited default ctor.
[gcc.git] / gcc / testsuite / g++.dg / cpp0x / nullptr41.C
CommitLineData
ab97c3cd
MP
1// PR c++/89212
2// { dg-do compile { target c++11 } }
3
4template <int, typename T> using enable_if_t = int;
5
6template<typename U, typename W, typename Y, class X, W(X::*foo)() = nullptr>
7struct p
8{
9 template<U(Y::*fun)() = foo, typename T = enable_if_t<nullptr == fun, int>>
10 p(T) { }
11 p() = default;
12};
13
14struct A
15{
16 p<void, void, A, A> i = 1;
17 void bar();
18 p<void, void, A, A, &A::bar> j;
19};
This page took 0.921999 seconds and 5 git commands to generate.