Clang Project

clang_source_code/test/Modules/Inputs/odr_hash-Unresolved/class.h
1#ifndef Class
2#define Class
3template <class T>
4class S {
5  int Field;
6  void run() {
7    int x;
8    A::Check(&Field, 1);
9    A::Check(&Field, 1);
10  }
11};
12#endif
13