From 741c13ecc20fb35b836ad690aeecd402f002d654 Mon Sep 17 00:00:00 2001 From: rdivacky Date: Wed, 18 Nov 2009 14:59:57 +0000 Subject: Update clang to r89205. --- test/SemaTemplate/instantiate-using-decl.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'test/SemaTemplate/instantiate-using-decl.cpp') diff --git a/test/SemaTemplate/instantiate-using-decl.cpp b/test/SemaTemplate/instantiate-using-decl.cpp index fd9010f..a1cf355 100644 --- a/test/SemaTemplate/instantiate-using-decl.cpp +++ b/test/SemaTemplate/instantiate-using-decl.cpp @@ -1,5 +1,7 @@ // RUN: clang-cc -fsyntax-only -verify %s +namespace N { } + template struct A { void f(); @@ -10,6 +12,7 @@ struct B : A { using A::f; void g() { + using namespace N; f(); } }; -- cgit v1.1