blob: aba7932a136365d57639493f21e23d53cd78c72e [file] [log] [blame]
// PR c++/98355
// { dg-do compile { target c++11 } }
struct S { int a; };
template <int> struct T
{
static_assert (!__builtin_has_attribute (((S*)0) -> a, packed), ""); // { dg-message "sorry, unimplemented: .__builtin_has_attribute. with dependent argument not supported yet" }
};