comparison gcc/testsuite/g++.dg/template/restrict1.C @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
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 };