blob: 1dd0adcffc6d249229e679435e7f635db5ee36b4 [file] [log] [blame]
typedef unsigned short W;
typedef const W *P;
extern void g(P);
void
f ()
{
const P s = (const W []){ 'R' };
g (s);
}