struct / union in initializer, RFE #901.
[sdcc.git] / sdcc / support / regression / qct / 0059-multistring.c
blobb04acaa7a09efd5c1141e27c05929a7e7836c20e
4 int main()
6 const char * s;
8 s = "abc" "def";
9 if(s[0] != 'a') return 1;
10 if(s[1] != 'b') return 2;
11 if(s[2] != 'c') return 3;
12 if(s[3] != 'd') return 4;
13 if(s[4] != 'e') return 5;
14 if(s[5] != 'f') return 6;
15 if(s[6] != 0) return 7;
17 return 0;