llvm-for-llvmta/tools/clang/test/Modules/Inputs/nested-template-default-arg.../alias.h

8 lines
112 B
C
Raw Normal View History

2022-04-25 13:02:35 +02:00
#ifndef ALIAS_H
#define ALIAS_H
struct alias_outer {
template <typename = int>
using alias = int;
};
#endif