(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
warn/
Wstrict-aliasing-1.C
/* { dg-do compile } */
/* { dg-options "-Wstrict-aliasing=2 -O2" } */

double x;
int *foo(void)
{
  return (int *)&x; /* { dg-warning "strict-aliasing" } */
}