(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
ext/
attrib2.C
// Test that an early attribute doesn't confuse uses of a class.
// { dg-do compile }

struct __attribute__ ((packed)) A
{
  void f () const;
};

void
A::f () const
{
}