repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr114361.c
blob
1d5babaa96676fbf0634e7ce9c5d501ed99f5b94
1
/* PR c/114361 */
2
/* { dg-do compile } */
3
/* { dg-options "-std=gnu23 -g" } */
4
5
void
f
()
6
{
7
typedef
struct
foo bar
;
8
typedef
__typeof
( ({ (
struct
foo
{
bar
*
x
; }){ }; }) )
wuz
;
9
struct
foo
{
wuz
*
x
; };
10
}