Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gcc.dg / Wstrict-aliasing-converted-assigned.c
blob409120f2a40ac7b70f2398af69d7d56ab043573d
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -Wstrict-aliasing -fstrict-aliasing" } */
5 int foo()
7 int i;
8 *(long*)&i = 0; /* { dg-warning "type-punn" } */
9 return i;