1 // RUN: %clang_cc1 %s -verify -fsyntax-only
2 // RUN: %clang_cc1 %s -verify -fsyntax-only -fno-signed-char
7 p
= &c
; // expected-error {{converts between pointers to integer types where one is of the unique plain 'char' type and the other is not}}
10 void unsignedToPlain() {
11 extern unsigned char uc
;
13 p
= &uc
; // expected-error {{converts between pointers to integer types where one is of the unique plain 'char' type and the other is not}}