aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/gen-attrs-31.C
blob: ab58e6e2b27c09cb4282749d5cf21d50cd4f4125 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// PR c++/35097
// { dg-do compile { target c++11 } }

template<int> struct A;

template<> struct A<0>
{
  typedef int X [[gnu::aligned(4)]];
};

template<typename T> void foo(const A<0>::X&, T);

void bar()
{
  foo(A<0>::X(), 0);
}