brintos

brintos / llvm-project-archived public Read only

0
0
Text · 164 B · bd974d1 Raw
7 lines · c
1// RUN: %clang_cc1 -fsyntax-only -Wunused-variable -Werror -verify %s2 3void f(void) {4  int i;  // expected-error{{unused}}5  int j;  // expected-error{{unused}}6}7