xref: /llvm-project/clang/test/Modules/Inputs/nested-template-default-arg-redecl/alias.h (revision aa3bf6ce721dc9531f52b84e93b6ad182517561b)
1 #ifndef ALIAS_H
2 #define ALIAS_H
3 struct alias_outer {
4   template <typename = int>
5   using alias = int;
6 };
7 #endif
8