blob: 80f391f64c72f7f77be3d88a4478cbd73a698f8f [file] [log] [blame]
// 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 <typename> struct X {
constexpr static E foo(S s) { return {{s(1)}}; }
};
S s;
static_assert((X<S>::foo(s), 1), "");