summaryrefslogtreecommitdiffstats
path: root/test/Modules/Inputs/nested-template-default-arg-redecl/strct.h
blob: 04d12448f35aeb7c25ee88fe780d5833dcc5e5e8 (plain)
1
2
3
4
5
6
7
#ifndef STRCT_H
#define STRCT_H
struct strct_outer {
  template <typename = int>
  struct strct;
};
#endif