[NFC][AArch64] Explicitly define undefined bits for instructions (#122129)
[llvm-project.git] / clang / test / Modules / Inputs / nested-template-default-arg-redecl / strct.h
blob04d12448f35aeb7c25ee88fe780d5833dcc5e5e8
1 #ifndef STRCT_H
2 #define STRCT_H
3 struct strct_outer {
4 template <typename = int>
5 struct strct;
6 };
7 #endif