summaryrefslogtreecommitdiff
path: root/support/regression/qct/0082-voidret.c
blob: e2c4ff49fce82220c0610d689b1a6eac322dfb9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

void
voidfn()
{
    return;
}

int
main()
{
    voidfn();
    return 0;
}