blob: a2fc72ad8941d4d38c26abe87e4cab5ad7ee0efb [file] [log] [blame]
// PR c++/104245
// { dg-lto-do assemble }
// { dg-require-effective-target c++11 }
template <typename T> struct A { alignas(T) alignas(int) int a; };
struct B { B(const char *, const char *, int, int); A<int> b; };
B c {"", "", 0, 0};