summaryrefslogtreecommitdiff
path: root/test/regression/casts1.c
blob: 34962220f5b294bfd76fecf2d0535a3ed4008903 (plain)
1
2
3
4
5
6
7
8
#include <stdio.h>

int main(void)
{
        unsigned short p_69 = (signed char) (-1);
        printf("%d\n", p_69);
        return 0;
}