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 Sambucstatic 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