aboutsummaryrefslogtreecommitdiff
path: root/test/Modules/Inputs/DebugNestedA.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/Modules/Inputs/DebugNestedA.h')
-rw-r--r--test/Modules/Inputs/DebugNestedA.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/Modules/Inputs/DebugNestedA.h b/test/Modules/Inputs/DebugNestedA.h
new file mode 100644
index 000000000000..58dc2a7df749
--- /dev/null
+++ b/test/Modules/Inputs/DebugNestedA.h
@@ -0,0 +1,8 @@
+/* -*- C++ -*- */
+template <typename T> class Base {};
+template <typename T> struct A : public Base<A<T>> {
+ void f();
+};
+
+class F {};
+typedef A<F> AF;