Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Modules / Inputs / odr_using_dependent_name / foo.h
blob2c02912b2257ed4e92cd64821affc8af1f88379d
1 template <class T>
2 struct bar {
3 using Ty = int;
4 };
5 template <class T>
6 struct foo : public bar<T> {
7 using typename bar<T>::Ty;
8 void baz(Ty);
9 };