]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/Wcxx-compat-1.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / Wcxx-compat-1.c
CommitLineData
b7e20b53
GDR
1/* PR c/21759 */
2/* { dg-options "-Wc++-compat" } */
3
4int
5main(void)
6{
7 void *p = 0;
8 int *q = p; /* { dg-warning "not permitted" } */
9 double* t = (void *)0;
10 return p != q;
11}