xref: /llvm-project/clang/test/Modules/Inputs/thread-safety/b.h (revision dd55b95fb2c2d3d65cf37c3cd8173380a97dd673)
1 #include "a.h"
2 
3 struct X {
4   mutex m;
5   int n __attribute__((guarded_by(m)));
6 
7   void f();
8 };
9