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

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children 84e7813d76e9
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
1 // { dg-do compile { target c++11 } }
2
3 template <class T> struct A
4 {
5 constexpr T f ();
6 };
7
8 int g();
9
10 // We should complain about this.
11 template<> constexpr int A<int>::f()
12 { return g(); } // { dg-error "non-constexpr" }
13
14 // But not about this.
15 struct B
16 {
17 int i;
18 constexpr B(int i = g()):i(i) { }
19 };
20 struct C: B { };
21 C c;