Home | History | Annotate | Download | only in Sema

Lines Matching full:void

3 void
4 foo (void)
11 void foo2 (void)
18 void foo3 (void)
20 void* x = 0;
21 void* y = &*x; /* expected-warning{{address of an expression of type 'void'}} */
24 extern const void cv1;
26 const void *foo4 (void)
31 extern void cv2;
32 void *foo5 (void)
34 return &cv2; /* expected-warning{{address of an expression of type 'void'}} */
37 typedef const void CVT;
40 const void *foo6 (void)