Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git] / 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>;