Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
f94e215e4a67e5439d56a67bbe470c7860d4b9a6
/
.
/
test
/
Sema
/
incompatible-sign.c
blob: 9747327364be78469164d8885647279c6c5dfc3d [
file
] [
log
] [
blame
]
// RUN: clang %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}}