1 // PR c++/51707
2 // { dg-do compile { target c++11 } }
3 
4 struct S {
SS5 	constexpr S() {}
6 };
7 
8 struct T {
TT9 	constexpr T(S const& s) : s{s} {}
10 	S const& s;
11 };
12 
13 constexpr S s {};
14 constexpr T t { s };
15