OSDN Git Service

2008-01-15 Douglas Gregor <doug.gregor@gmail.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / vt-34051-2.C
1 // { dg-options "-std=c++0x" }
2 template<typename... T> struct A
3 {
4   int i __attribute__((aligned(__alignof(T)))); // { dg-error "parameter packs|T" }
5 };
6
7 A<int> a;