xref: /llvm-project/clang-tools-extra/test/clang-move/Inputs/type_alias.h (revision d69d90753c1f0611015be54d2a56ee5567d311f6)
1 typedef int Int1;
2 using Int2 = int;
3 
4 template<class T>
5 struct A {};
6 
7 template <class T> using B = A<T>;
8 
9 class C {
10   typedef int Int3;
11 };
12