]> andersk Git - splint.git/blame - test/longint.c
Update configure and makefile to aclocal/automake 1.10.1 and autoconf 2.61.
[splint.git] / test / longint.c
CommitLineData
81fc136a 1void 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 0.438906 seconds and 5 git commands to generate.