Files
clang-p2996/clang/test/Modules/Inputs/using-decl-b.h
Richard Smith fd8634a09d Make UsingShadowDecls redeclarable. This fixes some visibility problems with
modules.

With this fixed, I no longer see any test regressions in the libc++ test suite
when enabling a single-module module.map for libc++ (other than issues with my
system headers).

llvm-svn: 193219
2013-10-23 02:17:46 +00:00

12 lines
184 B
C++

namespace UsingDecl {
namespace B { typedef int inner; }
using B::inner;
}
#include "using-decl-a.h"
namespace UsingDecl {
using ::using_decl_type;
using ::using_decl_var;
}