* c-common.c (get_priority): Add check for
[official-gcc.git] / gcc / testsuite / g++.dg / other / offsetof3.C
blob1e83af980718ed7eaf4d31f711a0a33c21975c91
1 /* Verify that offsetof warns if given a non-POD */
2 /* Copyright (C) 2003 Free Software Foundation, Inc. */
3 /* Contributed by Matt Austern <austern@apple.com> 15 May 2003 */
4 /* { dg-do compile } */
6 struct X
8   X() : x(3), y(4) { }
9   int x, y;
12 typedef X* pX;
13 typedef __SIZE_TYPE__ size_t;
15 size_t yoff = size_t(&(pX(0)->y)); /* { dg-warning "invalid access" "" } */
16 /* { dg-warning "macro was used incorrectly" "macro" { target *-*-* } 15 } */