llvm-for-llvmta/tools/clang/test/Modules/Inputs/no-linkage/decls.h

12 lines
252 B
C
Raw Normal View History

2022-04-25 13:02:35 +02:00
namespace RealNS { int UsingDecl; }
namespace NS = RealNS;
typedef int Typedef;
using AliasDecl = int;
using RealNS::UsingDecl;
struct Struct {};
extern int Variable;
namespace AnotherNS {}
enum X { Enumerator };
void Overloads();
void Overloads(int);