forked from OSchip/llvm-project
35 lines
389 B
C++
35 lines
389 B
C++
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
|
|
namespace test0 {
|
|
namespace ns0 {
|
|
class tag;
|
|
int tag();
|
|
}
|
|
|
|
namespace ns1 {
|
|
using ns0::tag;
|
|
}
|
|
|
|
namespace ns2 {
|
|
using ns0::tag;
|
|
}
|
|
|
|
using ns1::tag;
|
|
using ns2::tag;
|
|
}
|
|
|
|
// PR 5752
|
|
namespace test1 {
|
|
namespace ns {
|
|
void foo();
|
|
}
|
|
|
|
using ns::foo;
|
|
void foo(int);
|
|
|
|
namespace ns {
|
|
using test1::foo;
|
|
}
|
|
}
|
|
|