Files
clang-p2996/clang/test/Modules/Inputs/thread-safety/b.h
2015-08-12 02:17:52 +00:00

9 lines
94 B
C

#include "a.h"
struct X {
mutex m;
int n __attribute__((guarded_by(m)));
void f();
};