summaryrefslogtreecommitdiffstats
path: root/test/SemaCXX/missing-header.cpp
blob: f436579900586f747376379dd282a08006545978 (plain)
1
2
3
4
5
6
7
8
9
// RUN: %clang_cc1 -fsyntax-only -verify %s

#include "not exist" // expected-error{{'not exist' file not found}}

class AnalysisContext {};
static ControlFlowKind CheckFallThrough(AnalysisContext &AC) {
  if (const AsmStmt *AS = dyn_cast<AsmStmt>(S)) {}
  bool NoReturnEdge = false;
}
OpenPOWER on IntegriCloud