blob: 2c7bb50f081b29716465bac06a334b39ab5ebb1e [file] [log] [blame]
// { dg-options "-std=c++0x" }
template<typename... T> struct A
{
int i __attribute__((aligned(__alignof(T)))); // { dg-error "parameter packs|T" }
};
A<int> a;