brintos

brintos / llvm-project-archived public Read only

0
0
Text · 180 B · c9eaab6 Raw
10 lines · cpp
1// RUN: %clang_cc1 -fsyntax-only -Wunused-parameter -Wunused -verify %s2// expected-no-diagnostics3 4struct S {5  void m(int x, int y) {6    int z;7    #pragma unused(x,y,z)8  }9};10