Sign in
cobalt
/
cobalt
/
08336faa599332e3e3bf29b7ad38ef023018b55e
/
.
/
third_party
/
llvm-project
/
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}}
}