summaryrefslogtreecommitdiffstats
path: root/libacc/tests/data/short.c
blob: 5e222f33aa8ca879f51406694f818ed728155522 (plain)
1
2
3
4
5
6
short a = 3;
int main() {
    short* b = &a;
    *b = *b - 5;
    return a;
}