blob: 5b3915b865cd62b390c1b14941264ce1f1e069eb [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
Ted Kremenek1d26f482011-10-24 01:32:45 +00005class AnalysisDeclContext {};
6static ControlFlowKind CheckFallThrough(AnalysisDeclContext &AC) {
Douglas Gregor1864f2e2010-04-14 22:19:45 +00007 if (const AsmStmt *AS = dyn_cast<AsmStmt>(S)) {}
8 bool NoReturnEdge = false;
9}