comparison gcc/testsuite/g++.dg/cpp0x/constexpr-template10.C @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
1 // PR c++/70505
2 // { dg-do compile { target c++11 } }
3
4 template <class X>
5 struct s
6 {
7 template <class T>
8 static constexpr T f1(const T x) {return x;}
9 template <class T, T = f1<T>(sizeof(T))>
10 static constexpr T f2(const T x) {return x;}
11 static void f() {s<int>::f2(42);}
12 };
13
14 int main()
15 {
16 s<int>::f();
17 }