aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/vt-34051-2.C
blob: ace905aad9be3456ce37204c85af92ad088d4ce7 (plain)
1
2
3
4
5
6
7
// { dg-do compile { target c++11 } }
template<typename... T> struct A
{
  int i __attribute__((aligned(__alignof(T)))); // { dg-error "parameter packs|T" }
};

A<int> a;