Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
04a2311982d34269f84362a02a7a76a3e47675bc
/
.
/
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}}