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

8 lines
107 B
C
Raw Normal View History

2022-04-25 13:02:35 +02:00
#ifndef STRCT_H
#define STRCT_H
struct strct_outer {
template <typename = int>
struct strct;
};
#endif