xref: /minix3/external/bsd/llvm/dist/clang/test/SemaCXX/missing-header.cpp (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -fsyntax-only -verify %s
2*f4a2713aSLionel Sambuc 
3*f4a2713aSLionel Sambuc #include "not exist" // expected-error{{'not exist' file not found}}
4*f4a2713aSLionel Sambuc 
5*f4a2713aSLionel Sambuc class AnalysisDeclContext {};
CheckFallThrough(AnalysisDeclContext & AC)6*f4a2713aSLionel Sambuc static ControlFlowKind CheckFallThrough(AnalysisDeclContext &AC) {
7*f4a2713aSLionel Sambuc   if (const GCCAsmStmt *AS = dyn_cast<GCCAsmStmt>(S)) {}
8*f4a2713aSLionel Sambuc   bool NoReturnEdge = false;
9*f4a2713aSLionel Sambuc }
10