unplugged-vendor/external/llvm-project/clang/test/Modules/Inputs/nested-template-default-arg-redecl/strct.h

8 lines
107 B
C++

#ifndef STRCT_H
#define STRCT_H
struct strct_outer {
template <typename = int>
struct strct;
};
#endif