blob: 4452298eb33030ca6a06f17363f579c7af20ed06 [file] [log] [blame]
// 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];
};