[DFAJumpThreading] Remove incoming StartBlock from all phis when unfolding select...
[llvm-project.git] / clang-tools-extra / test / clang-tidy / infrastructure / duplicate-reports.cpp
blobc9d48d68a4c6243f7cefab97f9163baee218c9ec
1 // RUN: %check_clang_tidy %s cert-err09-cpp,cert-err61-cpp %t -- -- -fexceptions
3 void alwaysThrows() {
4 int ex = 42;
5 // CHECK-MESSAGES: warning: throw expression should throw anonymous temporary values instead [cert-err09-cpp,cert-err61-cpp]
6 throw ex;
9 void doTheJob() {
10 try {
11 alwaysThrows();
12 } catch (int&) {