summaryrefslogtreecommitdiffstats
path: root/test/SemaTemplate/instantiate-dependent-nested-name.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/SemaTemplate/instantiate-dependent-nested-name.cpp')
-rw-r--r--test/SemaTemplate/instantiate-dependent-nested-name.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/SemaTemplate/instantiate-dependent-nested-name.cpp b/test/SemaTemplate/instantiate-dependent-nested-name.cpp
new file mode 100644
index 0000000..2b1d298
--- /dev/null
+++ b/test/SemaTemplate/instantiate-dependent-nested-name.cpp
@@ -0,0 +1,7 @@
+// RUN: clang-cc -fsyntax-only -verify %s
+// PR4382
+template<typename T> struct X { static const T A = 1; };
+template<typename T, bool = X<T>::A> struct Y { typedef T A; };
+template<typename T> struct Z { typedef typename Y<T>::A A; };
+extern int x;
+extern Z<int>::A x;
OpenPOWER on IntegriCloud