comparison gcc/testsuite/g++.dg/cpp0x/nullptr40.C @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents
children
comparison
equal deleted inserted replaced
131:84e7813d76e9 145:1830386684a0
1 // PR c++/89212
2 // { dg-do compile { target c++11 } }
3
4 template <int, typename T> using enable_if_t = int;
5
6 template<class X, void(X::*foo)() = nullptr>
7 struct p
8 {
9 template<void(X::*fun)() = foo, typename T = enable_if_t<nullptr == fun, int>>
10 p(T) { }
11 p() = default;
12 };
13
14 struct A
15 {
16 p<A> i = 1;
17 void bar();
18 p<A, &A::bar> j;
19 };