llvm/clang/test/SemaCXX/no-warn-composite-pointer-type.cpp

// RUN: %clang_cc1 -fsyntax-only -Wno-compare-distinct-pointer-types -verify %s
// expected-no-diagnostics

void Foo(int **thing, const int **thingMax)
{
        if ((thing + 3) > thingMax)
                return;
}