libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / testsuite / gcc.dg / pr114361.c
blob1d5babaa96676fbf0634e7ce9c5d501ed99f5b94
1 /* PR c/114361 */
2 /* { dg-do compile } */
3 /* { dg-options "-std=gnu23 -g" } */
5 void f()
7 typedef struct foo bar;
8 typedef __typeof( ({ (struct foo { bar *x; }){ }; }) ) wuz;
9 struct foo { wuz *x; };