1 // PR c++/93559 - ICE with CONSTRUCTOR flags verification.
2 // { dg-do compile { target c++11 } }
3 
4 struct F { int d[10]; };
5 struct E { F f; };
6 
7 struct S {
operatorS8   constexpr int operator()(char) { return 42; }
9 };
10 
11 template <typename> struct X {
fooX12   constexpr static E foo(S s) { return {{{s(1)}}}; }
13 };
14 
15 S s;
16 static_assert((X<S>::foo(s), 1), "");
17