aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/restrict1.C
blob: 4452298eb33030ca6a06f17363f579c7af20ed06 (plain)
1
2
3
4
5
6
7
8
// PR c++/6392
// Bug: We tried to make the array restricted, which doesn't make sense.

template <class T>
class bob
{	
	T * __restrict a[50];
};