From 896436706037daf3c24e66bb95cb6ef9750a15b0 Mon Sep 17 00:00:00 2001 From: Eli Friedman <eli.friedman@gmail.com> Date: Thu, 20 Jun 2013 00:04:23 +0000 Subject: [PATCH] Add a testcase which uses an UnresolvedUsingTypenameDecl as the base of an NNS. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@184386 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/SemaCXX/using-decl-templates.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/SemaCXX/using-decl-templates.cpp b/test/SemaCXX/using-decl-templates.cpp index 2f8abca02d6..2fc67956425 100644 --- a/test/SemaCXX/using-decl-templates.cpp +++ b/test/SemaCXX/using-decl-templates.cpp @@ -80,3 +80,8 @@ namespace PR10883 { void foo(const Container& current); // expected-error {{unknown type name 'Container'}} }; } + +template<typename T> class UsingTypenameNNS { + using typename T::X; + typename X::X x; +}; -- GitLab