Sign in
llvm
/
clang
/
refs/heads/release_27
/
.
/
test
/
Sema
/
incompatible-sign.c
blob: a1592efc4c47d6ccabf9df3d9acf28ca4fbc89cb [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 %s -verify -fsyntax-only
int
a
(
int
*
x
);
int
b
(
unsigned
*
y
)
{
return
a
(
y
);
}
// expected-warning {{pointer types point to integer types with different sign}}