]> andersk Git - splint.git/blame - test/compoundstmt.c
noexpand always false.
[splint.git] / test / compoundstmt.c
CommitLineData
abd7f895 1/* GCC extension: http://gcc.gnu.org/onlinedocs/gcc-3.0.3/gcc_5.html#SEC68 */
2
3extern void fvoid (void) ;
4
5int main (int argc, char **argv) {
6 int i, j;
7 j = 1;
8 i = ({ int __tmp; __tmp=(5); __tmp; });
9 j = ({ int __tmp; __tmp=(5); fvoid (); });
10 printf("%d\n", i);
11 return 1;
12}
This page took 0.055029 seconds and 5 git commands to generate.