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
12 lines
184 B
C++
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;
|
|
}
|