]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/SemaCXX/missing-header.cpp
Vendor import of clang trunk r161861:
[FreeBSD/FreeBSD.git] / test / SemaCXX / missing-header.cpp
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2
3 #include "not exist" // expected-error{{'not exist' file not found}}
4
5 class AnalysisDeclContext {};
6 static ControlFlowKind CheckFallThrough(AnalysisDeclContext &AC) {
7   if (const AsmStmt *AS = dyn_cast<AsmStmt>(S)) {}
8   bool NoReturnEdge = false;
9 }