Add tests, fixes for tests, reinstate and type-convert stuff marked "bitrot"
[ccom.git] / TEST / tst_assign.c
1 main()
2 {
3         int     a = 15,
4                 b = 20;
5
6         b =& a;
7         printf("20 & 15 = %d\n",b);
8         a =- 8;
9         printf("15 - 8 = %d\n",a);
10 }