ref: a1f4b88d0fd4e5d3b1b537f69db56fc282a2964f
dir: /cc1/tests/test059.c/
/* name: TEST059 description: Test of initalizers for strings error: TODO output: */ char s0[] = "foo"; char s1[7] = "foo"; char s2[2] = "foo"; char s3[] = {"foo"}; char *p = "foo"; int m[] = "foo";