summaryrefslogtreecommitdiffstats
path: root/test/Modules/Inputs/nested-template-default-arg-redecl/strct.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/Modules/Inputs/nested-template-default-arg-redecl/strct.h')
-rw-r--r--test/Modules/Inputs/nested-template-default-arg-redecl/strct.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/Modules/Inputs/nested-template-default-arg-redecl/strct.h b/test/Modules/Inputs/nested-template-default-arg-redecl/strct.h
new file mode 100644
index 0000000000..04d12448f3
--- /dev/null
+++ b/test/Modules/Inputs/nested-template-default-arg-redecl/strct.h
@@ -0,0 +1,7 @@
+#ifndef STRCT_H
+#define STRCT_H
+struct strct_outer {
+ template <typename = int>
+ struct strct;
+};
+#endif