blob: a1048fee46eb59fec9c75d9309d588792e0644e1 [file] [log] [blame]
Douglas Gregor2d2d9072010-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 Kremenek81ce1c82011-10-24 01:32:45 +00005class AnalysisDeclContext {};
6static ControlFlowKind CheckFallThrough(AnalysisDeclContext &AC) {
Chad Rosierde70e0e2012-08-25 00:11:56 +00007 if (const GCCAsmStmt *AS = dyn_cast<GCCAsmStmt>(S)) {}
Douglas Gregor2d2d9072010-04-14 22:19:45 +00008 bool NoReturnEdge = false;
9}