aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/ext/attrib20.C
blob: 25b27f307b5c12c9209aa178f91b468928111d85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// { dg-do compile }
// { dg-options "-g" }
// Origin: <jan at etpmod dot phys dot tue dot nl>
// PR c++/19508: avoid attributes for template parameters

template <typename T>
struct BVector
{
  typedef T T2;
  typedef T value_type __attribute__ ((aligned(8)));    // { dg-bogus "attribute" "attribute" }
  typedef T2 value_type2 __attribute__ ((aligned(8)));  // { dg-bogus "attribute" "attribute" }
  value_type v;
};
BVector<int> m;

template <template <class> class T>
struct BV2
{
  typedef T<float> value_type __attribute__((aligned(8))); // { dg-bogus "attribute" "attribute" }
  value_type v;
};
BV2<BVector> m2;