blob: b52914a2c33edefd506d144e8640950fc2693f35 [file] [log] [blame]
// RUN: %clang_cc1 -fsyntax-only -Wno-compare-distinct-pointer-type -verify %s
// rdar://12501960
void Foo(int **thing, const int **thingMax)
{
if ((thing + 3) > thingMax)
return;
}