Imported Upstream version 4.8.1
[platform/upstream/gcc48.git] / gcc / testsuite / g++.dg / cpp0x / gen-attrs-2.C
1 // { dg-do compile { target c++11 } }
2
3 struct [[gnu::packed]] A
4 {
5   void f () const;
6 };
7
8 void
9 A::f () const
10 {
11 }