[PR c++/84702] ICE with default tmpl arg of overload set
[official-gcc.git] / gcc / testsuite / g++.dg / ext / vector9.C
blobb1216c2b37d709c68d97fdebb6b4f8be3030e0e3
1 // PR c++/34891
3 typedef float v4f __attribute__((vector_size(8)));
4 typedef int   v4i __attribute__((vector_size(8)));
6 void foo()
8   v4f v;
9   !(v4i)v;
10   !v;