aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/ext/restrict2.C
blob: f053210028a73a84b25108672a07d3187e50d67b (plain)
1
2
3
4
5
6
7
8
// PR c++/60872
// { dg-options "" }

typedef double *__restrict T;
void f(T* p)
{
  void *p2 = p;
}