• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 
3 #include "not exist" // expected-error{{'not exist' file not found}}
4 
5 class AnalysisContext {};
CheckFallThrough(AnalysisContext & AC)6 static ControlFlowKind CheckFallThrough(AnalysisContext &AC) {
7   if (const AsmStmt *AS = dyn_cast<AsmStmt>(S)) {}
8   bool NoReturnEdge = false;
9 }
10