PR c++/81917 - ICE with void_t and partial specialization.
[official-gcc.git] / gcc / testsuite / g++.dg / template / restrict1.C
blob4452298eb33030ca6a06f17363f579c7af20ed06
1 // PR c++/6392
2 // Bug: We tried to make the array restricted, which doesn't make sense.
4 template <class T>
5 class bob
6 {       
7         T * __restrict a[50];
8 };