blob: f436579900586f747376379dd282a08006545978 [file] [log] [blame]
Douglas Gregor1864f2e2010-04-14 22:19:45 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3#include "not exist" // expected-error{{'not exist' file not found}}
4
5class AnalysisContext {};
6static ControlFlowKind CheckFallThrough(AnalysisContext &AC) {
7 if (const AsmStmt *AS = dyn_cast<AsmStmt>(S)) {}
8 bool NoReturnEdge = false;
9}