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