Sign in
cobalt
/
cobalt
/
3cd5432aaed8f14f27f66ade1b51aa71df939492
/
.
/
third_party
/
llvm-project
/
clang
/
test
/
SemaCXX
/
no-warn-composite-pointer-type.cpp
blob: f33f60de9fdd4e36273c479b4ff356ece68de07e [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -fsyntax-only -Wno-compare-distinct-pointer-types -verify %s
// expected-no-diagnostics
// rdar://12501960
void
Foo
(
int
**
thing
,
const
int
**
thingMax
)
{
if
((
thing
+
3
)
>
thingMax
)
return
;
}