// RUN: %clang_cc1 %s -verify -fsyntax-only
// RUN: %clang_cc1 %s -verify -fsyntax-only -fno-signed-char
voidplainToSigned(){externchar c;signedchar*p;
p =&c;// expected-error {{converts between pointers to integer types where one is of the unique plain 'char' type and the other is not}}
}voidunsignedToPlain(){externunsignedchar uc;char*p;
p =&uc;// expected-error {{converts between pointers to integer types where one is of the unique plain 'char' type and the other is not}}
}