shithub: scc

ref: a1815ba111ef7531c60c1a2e4eaeb9351e0ba791
dir: /cc1/tests/test059.c/

View raw version
/*
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";