Fortran: Fix PR 47485.
[gcc.git] / gcc / testsuite / g++.dg / warn / pr33160.C
blobe463e2dfd1ca17a6aba915a7a99da5a449d547ed
1 // PR 33160
2 // { dg-do compile }
3 // { dg-options "-Wall -Wextra -Wpointer-arith -pedantic -Wconversion" }
5 typedef int __attribute__((mode(pointer))) intptr_t;
6 int foo(void)
8  intptr_t t = 0;
9  if (t != ((intptr_t)__null)) t = 1;
10  return 0;