Consistently name the directories should_*.
[cparser] / parsetest / should_fail / casts.c
1 char *p1 = (char *)0.0;
2 char *p2 = (char *)4.5;
3
4 struct S { int a; } x;
5 struct T { int b; } y = (struct T)x;