]> pd.if.org Git - lice/blob - tests/cast.c
autocommit for files dated 2014-11-17 20:13:34
[lice] / tests / cast.c
1 // casts
2
3 int main(void) {
4     expecti((int)1,     1);
5     expectf((float)2,   2.0);
6     expectd((double)3,  3.0);
7
8     int a[3];
9     *(int *)(a + 2) = 1024;
10     expecti(a[2], 1024);
11
12     return 0;
13 }