PR middle-end/77674
[official-gcc.git] / gcc / testsuite / g++.dg / other / offsetof4.C
blobab2282e25568589a32562a95cc013b728358f313
1 /* Verify that -Wno-invalid-offsetof disables warning */
2 /* Copyright (C) 2003 Free Software Foundation, Inc. */
3 /* Contributed by Matt Austern <austern@apple.com> 15 May 2003 */
4 /* { dg-do compile } */
5 /* { dg-options "-Wno-invalid-offsetof" } */
7 struct X
9   X() : x(3), y(4) { }
10   int x, y;
13 typedef X* pX;
14 typedef __SIZE_TYPE__ size_t;
16 size_t yoff = size_t(&(pX(0)->y));