1 /* Test constraints on unary '&': PR 22367.  */
2 
3 /* { dg-do compile } */
4 /* { dg-options "-std=iso9899:1999 -pedantic-errors" } */
5 
6 extern void v;
f1(void)7 void f1 (void) { &v; } /* { dg-error "taking address of expression of type 'void'" } */
8 
9 extern void *pv;
f2(void)10 void f2 (void) { &*pv; } /* { dg-warning "dereferencing" } */
11 
12 extern const void cv;
f3(void)13 void f3 (void) { &cv; }
14 
15 extern const void *pcv;
f4(void)16 void f4 (void) { &*pcv; } /* { dg-warning "dereferencing" } */
17