[NFC][AArch64] Explicitly define undefined bits for instructions (#122129)
[llvm-project.git] / clang / test / Modules / Inputs / no-linkage / decls.h
blobc8d6de55f74e8712fa4c726d042b13ff2c553eaf
1 namespace RealNS { int UsingDecl; }
2 namespace NS = RealNS;
3 typedef int Typedef;
4 using AliasDecl = int;
5 using RealNS::UsingDecl;
6 struct Struct {};
7 extern int Variable;
8 namespace AnotherNS {}
9 enum X { Enumerator };
10 void Overloads();
11 void Overloads(int);