[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / Modules / redundant-include.mm
blobd736022699c3ce8eab71cddd90fabd2abcb4eb5d
1 // RUN: rm -rf %t
2 // RUN: %clang_cc1 -fmodules-cache-path=%t -fmodules -fimplicit-module-maps -I%S/Inputs %s -verify
3 // RUN: %clang_cc1 -fmodules-cache-path=%t -fimplicit-module-maps -I%S/Inputs %s -verify
5 #include "cxx-header.h"
6 void includeNotAtTopLevel() { // expected-note {{function 'includeNotAtTopLevel' begins here}}
7   #include "cxx-header.h" // expected-error {{redundant #include of module 'cxx_library' appears within function 'includeNotAtTopLevel'}}
10 namespace NS { // expected-note {{begins here}}
11   #include "cxx-header.h" // expected-error {{redundant #include of module 'cxx_library' appears within namespace 'NS'}}