Sign in
fuchsia
/
third_party
/
llvm-project
/
c3fd2a50ba1395b6c2240f6a688c6a1aa975a1fe
/
.
/
clang
/
test
/
Sema
/
warn-unused-variables-werror.c
blob: ceaff1ba69b4bcf543cc1ca3cc79e170600a0c7b [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -fsyntax-only -Wunused-variable -Werror -verify %s
void
f
()
{
int
i
;
// expected-error{{unused}}
int
j
;
// expected-error{{unused}}
}