OSDN Git Service

PR c++/26714
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-nonlit2.C
1 // { dg-options -std=c++0x }
2
3 struct A
4 {
5   ~A();
6 };
7
8 template<class T>
9 struct W {
10   T t;
11   template<class U>
12   constexpr W(U&& u) : t(u) {}
13 };
14
15 template <class T>
16 constexpr W<T> make_w(T& w) { return W<T>(w); }
17
18 A a;
19 constexpr auto w = make_w(a);   // { dg-error "" }