2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20000528-1.c
blob20692bf8113584e7a712a0cbc7386d6ffbe259ac
1 /* Copyright (C) 2000 Free Software Foundation */
2 /* Contributed by Alexandre Oliva <aoliva@cygnus.com> */
4 unsigned long l = (unsigned long)-2;
5 unsigned short s;
7 int main () {
8 long t = l;
9 s = t;
10 if (s != (unsigned short)-2)
11 abort ();
12 exit (0);