No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / g++.dg / ext / attrib12.C
blobaea93781df891ee820c1478ec8cc3641658ea7ed
1 // PR c++/13791
3 template <typename T> struct O {
4   struct __attribute__((packed)) I {
5     int i;
6     char c;
7   };
9   I* foo();
12 template <typename T>
13 typename O<T>::I*
14 O<T>::foo() { return 0; }
16 template class O<int>;