]> andersk Git - splint.git/blob - test/longint.c
noexpand always false.
[splint.git] / test / longint.c
1 void f (void) 
2 {
3   long int li1 = 3L;
4   int i1 = 7;
5   short int si1 = 3;
6
7   i1 = li1; /* error unless +longint */
8   li1 = i1; /* okay */
9   i1 = si1; /* okay */
10   si1 = i1; /* error unless +shortint */
11
12   li1 = si1;
13   si1 = li1; /* error unless +shortint +longint */
14 }
This page took 1.220829 seconds and 5 git commands to generate.