1 // RUN: %clang_cc1 -fsyntax-only -verify -pedantic %s
17 a
[0] = test3
; // expected-error{{incompatible pointer to integer conversion assigning to 'int' from 'int (void)'}}
20 short x
; void test4(char c
) { x
+= c
; }
21 int y
; void test5(char c
) { y
+= c
; }