aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/gen-attrs-25.C
blob: 09486d66b76800770f774dd4f37de46d457e0b6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// 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" }
};