teak-llvm/clang/test/Sema/warn-unused-variables-werror.c
Matt Beaumont-Gay 8f51121866 Warn about more than the first unused variable when -Werror is set.
To do this, thread DiagnosticErrorTrap's hasUnrecoverableErrorOccurred through
to Scope.

llvm-svn: 178294
2013-03-28 21:46:45 +00:00

7 lines
160 B
C

// RUN: %clang_cc1 -fsyntax-only -Wunused-variable -Werror -verify %s
void f() {
int i; // expected-error{{unused}}
int j; // expected-error{{unused}}
}