From 36c49e3f258dced101949edabd72e9bc3f1dedc4 Mon Sep 17 00:00:00 2001 From: dim Date: Fri, 17 Sep 2010 15:54:40 +0000 Subject: Vendor import of clang r114020 (from the release_28 branch): http://llvm.org/svn/llvm-project/cfe/branches/release_28@114020 Approved by: rpaulo (mentor) --- test/SemaTemplate/nested-name-spec-template.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'test/SemaTemplate/nested-name-spec-template.cpp') diff --git a/test/SemaTemplate/nested-name-spec-template.cpp b/test/SemaTemplate/nested-name-spec-template.cpp index 12ab486..9c72845 100644 --- a/test/SemaTemplate/nested-name-spec-template.cpp +++ b/test/SemaTemplate/nested-name-spec-template.cpp @@ -88,3 +88,14 @@ namespace PR7385 { has_xxx0::type t; // expected-note{{instantiation of}} } + +namespace PR7725 { + template struct TypedefProvider; + template + struct TemplateClass : public TypedefProvider + { + void PrintSelf() { + TemplateClass::Test::PrintSelf(); + } + }; +} -- cgit v1.1