blob: aeffdffe30a7ff4fe6c7b099366c01cc0e4abd32 [file] [log] [blame]
// PR c++/28559
template<typename T> struct A
{
struct B;
};
struct C
{
template<typename T> friend struct __attribute__((packed)) A<T>::B; // { dg-warning "uninstantiated" }
};