[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / SemaCXX / no-warn-composite-pointer-type.cpp
blob295b8fb108e89801a9c18a64bad6ae958906c2c8
1 // RUN: %clang_cc1 -fsyntax-only -Wno-compare-distinct-pointer-types -verify %s
2 // expected-no-diagnostics
4 void Foo(int **thing, const int **thingMax)
6 if ((thing + 3) > thingMax)
7 return;