OSDN Git Service

/cp
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / restrict1.C
1 // PR c++/6392
2 // Bug: We tried to make the array restricted, which doesn't make sense.
3
4 template <class T>
5 class bob
6 {       
7         T * __restrict a[50];
8 };