modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/compile/pr22013-1.c (about) 1 typedef unsigned short W; 2 typedef const W *P; 3 4 extern void g(P); 5 6 void 7 f () 8 { 9 const P s = (const W []){ 'R' }; 10 g (s); 11 }