Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git] / sdcc / support / valdiag / tests / bug-3031.c
bloba75a17701b08543595c1eb8be78ced765a8d304d
1 /* bug-3031.c
3 Initialization of file-scope variables by an expression that contains function calls resulted in a segfault in codegen.
4 */
6 #ifdef TEST1
7 float f(int);
9 int i;
10 float d = f(i); /* ERROR */
12 #endif