llvm-project/clang-tools-extra/test/clang-tidy/infrastructure/duplicate-reports.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
332 B
C++
Raw Normal View History

// RUN: %check_clang_tidy %s cert-err09-cpp,cert-err61-cpp %t -- -- -fexceptions
void alwaysThrows() {
int ex = 42;
// CHECK-MESSAGES: warning: throw expression should throw anonymous temporary values instead [cert-err09-cpp,cert-err61-cpp]
throw ex;
}
void doTheJob() {
try {
alwaysThrows();
} catch (int&) {
}
}