llvm-for-llvmta/tools/clang/test/Modules/Inputs/odr_hash-Unresolved/class.h

13 lines
160 B
C
Raw Permalink Normal View History

2022-04-25 13:02:35 +02:00
#ifndef Class
#define Class
template <class T>
class S {
int Field;
void run() {
int x;
A::Check(&Field, 1);
A::Check(&Field, 1);
}
};
#endif