[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / Modules / Inputs / thread-safety / b.h
blobc8ed23738f181960569866b527f898ca70e713ac
1 #include "a.h"
3 struct X {
4 mutex m;
5 int n __attribute__((guarded_by(m)));
7 void f();
8 };