attrib12.C   [plain text]


// PR c++/13791

template <typename T> struct O {
  struct __attribute__((packed)) I {
    int i;
    char c;
  };

  I* foo();
};

template <typename T>
typename O<T>::I*
O<T>::foo() { return 0; }

template class O<int>;