fa549b61e70fb5f3ad12ed1b4cd58946d22a0b31
[cparser] / const.c
1
2 void t(void)
3 {
4         typedef int       Int;
5         typedef const Int CInt;
6         typedef CInt      MyCInt;
7
8         MyCInt k;
9
10         k = 5; /* should fail, assignment to const */
11 }