(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp0x/
gen-attrs-25.C
// PR c++/28559
// { dg-do compile { target c++11 } }

template<typename T> struct A
{
  struct B;
};

struct C
{
  template<typename T> friend struct [[gnu::packed]] A<T>::B; // { dg-warning "uninstantiated" }
};