// PR c++/93559 - ICE with CONSTRUCTOR flags verification. // { dg-do compile { target c++11 } } struct E { int d[10]; }; struct S { constexpr int operator()(char) { return 42; } }; template struct X { constexpr static E foo(S s) { return {{s(1)}}; } }; S s; static_assert((X::foo(s), 1), "");