1// RUN: %clang_cc1 -fsyntax-only -Wno-compare-distinct-pointer-types -verify %s2// expected-no-diagnostics3 4void Foo(int **thing, const int **thingMax)5{6 if ((thing + 3) > thingMax)7 return;8}9