aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/gen-attrs-2.C
blob: 8c777c1df8b06fa645229a5e0ffa54427304b576 (plain)
1
2
3
4
5
6
7
8
9
10
11
// { dg-do compile { target c++11 } }

struct [[gnu::packed]] A
{
  void f () const;
};

void
A::f () const
{
}