rt_gccstream/gcc/testsuite/gcc.c-torture/compile/pr22013-1.c

12 lines
124 B
C

typedef unsigned short W;
typedef const W *P;
extern void g(P);
void
f ()
{
const P s = (const W []){ 'R' };
g (s);
}