xref: /llvm-project/clang/test/SemaCXX/missing-header.cpp (revision de70e0ef454ce294b5526815e8ce657aa6806bff)
12d2d9075SDouglas Gregor // RUN: %clang_cc1 -fsyntax-only -verify %s
22d2d9075SDouglas Gregor 
32d2d9075SDouglas Gregor #include "not exist" // expected-error{{'not exist' file not found}}
42d2d9075SDouglas Gregor 
581ce1c8aSTed Kremenek class AnalysisDeclContext {};
CheckFallThrough(AnalysisDeclContext & AC)681ce1c8aSTed Kremenek static ControlFlowKind CheckFallThrough(AnalysisDeclContext &AC) {
7*de70e0efSChad Rosier   if (const GCCAsmStmt *AS = dyn_cast<GCCAsmStmt>(S)) {}
82d2d9075SDouglas Gregor   bool NoReturnEdge = false;
92d2d9075SDouglas Gregor }
10