blob: 527620ea0f11744692e25cca18629c523a1d914a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* { dg-do compile } */
/* { dg-options "" } */
struct obj {
int n;
int l;
};
int main()
{
(struct obj *)((char *)(__SIZE_TYPE__)({ 0; }) - (char *)&((struct obj *)0)->l);
}
|