OSDN Git Service

PR c++/43680
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / warn / Wstrict-aliasing-bogus-struct-included.C
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -Wstrict-aliasing -fstrict-aliasing" } */
3
4
5 struct S {
6   int i;
7   float f;
8 };
9
10 int foo () {
11   struct S s;
12   s.i = 7;
13   float* f = &s.f;  /* { dg-bogus "float included in struct S" } */
14   *f = 2.0;
15   return s.i + (int)s.f;
16 }