]> andersk Git - splint.git/blob - test/compoundstmt.c
noexpand always false.
[splint.git] / test / compoundstmt.c
1 /* GCC extension: http://gcc.gnu.org/onlinedocs/gcc-3.0.3/gcc_5.html#SEC68 */
2
3 extern void fvoid (void) ;
4
5 int 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.257056 seconds and 5 git commands to generate.