1 /* RUN: %clang_cc1 -fsyntax-only -verify -std=c90 -pedantic %s
13 typedef int (*arrayptr
)[];
21 void* y
= &*x
; /* expected-warning{{address of an expression of type 'void'}}
22 expected-warning {{ISO C does not allow indirection on operand of type 'void *'}} */
25 extern const void cv1
;
27 const void *foo4 (void)
35 return &cv2
; /* expected-warning{{address of an expression of type 'void'}} */
38 typedef const void CVT
;
41 const void *foo6 (void)