brintos

brintos / llvm-project-archived public Read only

0
0
Text · 203 B · 24f74c9 Raw
11 lines · plain
1// RUN: %clang_cc1  -std=gnu99 -fsyntax-only -verify %s2// expected-no-diagnostics3 4void f0(restrict id a0) {}5 6void f1(restrict id *a0) {}7 8void f2(restrict Class a0) {}9 10void f3(restrict Class *a0) {}11