brintos

brintos / llvm-project-archived public Read only

0
0
Text · 216 B · 295b8fb Raw
9 lines · cpp
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