Imported Upstream version 4.7.3
[platform/upstream/gcc48.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-ctor11.C
1 // PR c++/55856
2 // { dg-options -std=c++11 }
3
4 struct A
5 {
6   A(const char *);
7 };
8
9 template <class T>
10 struct B
11 {
12   T t;
13   template <class U> constexpr B(U&& u): t(u) { };
14 };
15
16 B<A&&> b("");