* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr33641.c
blob112f7032792bf6a5f2a4125ba4882e6c61526dd2
1 /* This failed with type checking enabled. */
3 typedef enum { one, two } exp;
4 extern exp pe;
5 extern char pt[256];
6 void psd (void (*f) (void *), void *p);
7 static void rle (void *e) { }
8 void
9 foo (void)
11 psd ((void (*)(void *)) (rle), (void *) (pt + pe));