PR c++/85553
[official-gcc.git] / gcc / testsuite / g++.dg / ext / tmplattr5.C
blob30138d44aab284730d51060e88cf7a9a8750990c
1 // PR c++/19407
2 // { dg-do run }
4 typedef float global_vector_type __attribute__((vector_size(16)));
6 template <class T> struct A
8   typedef T type;
9 };
11 template < typename Val > struct S
13   typedef typename A<Val>::type vector_type __attribute__((vector_size(16)));
14   typedef Val vector_type2 __attribute__((vector_size(16)));
15   int pr_size() { return sizeof(vector_type); }
16   int pr_size2() { return sizeof(vector_type2); }
19 int main()
21   if (sizeof (S<float>::vector_type) != sizeof (global_vector_type))
22     return 1;
23   if (sizeof (S<float>::vector_type2) != sizeof (global_vector_type))
24     return 2;
26   S<float> x;
27   if (x.pr_size() != sizeof (global_vector_type))
28     return 3;
29   if (x.pr_size2() != sizeof (global_vector_type))
30     return 4;
31   
32   return 0;