this should not be here
[cparser] / parsetest / should_warn / write_only8.c
1 int main(void)
2 {
3         int c;
4         c = *&c = 0;
5         return 0;
6 }