1*67e74705SXin Li // RUN: %clang_cc1 -fsyntax-only -verify %s 2*67e74705SXin Li 3*67e74705SXin Li #include "not exist" // expected-error{{'not exist' file not found}} 4*67e74705SXin Li 5*67e74705SXin Li class AnalysisDeclContext {}; CheckFallThrough(AnalysisDeclContext & AC)6*67e74705SXin Listatic ControlFlowKind CheckFallThrough(AnalysisDeclContext &AC) { 7*67e74705SXin Li if (const GCCAsmStmt *AS = dyn_cast<GCCAsmStmt>(S)) {} 8*67e74705SXin Li bool NoReturnEdge = false; 9*67e74705SXin Li } 10