aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/ext/vector33.C
blob: f50253232cf8542011abf55a48494894d9973007 (plain)
1
2
3
4
5
6
7
8
9
10
// PR c++/83300
// { dg-do compile { target c++11 } }

template<int N>
using T = int __attribute__((vector_size (sizeof(int) * N)));

void
f (T<4>)
{
}