[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / Modules / Inputs / nested-template-default-arg-redecl / alias.h
blobcff3329ce14f450c1d7fb77100feae67ae7a8a47
1 #ifndef ALIAS_H
2 #define ALIAS_H
3 struct alias_outer {
4 template <typename = int>
5 using alias = int;
6 };
7 #endif