Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Modules / Inputs / odr_hash-Unresolved / class.h
blob8a3c9f941f7ed356b1a7883f44bac12f0711afcd
1 #ifndef Class
2 #define Class
3 template <class T>
4 class S {
5 int Field;
6 void run() {
7 int x;
8 A::Check(&Field, 1);
9 A::Check(&Field, 1);
12 #endif