Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[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;