Fix testcase for clang
This commit is contained in:
parent
11d1050803
commit
dd3d04a2f2
1 changed files with 8 additions and 0 deletions
|
|
@ -20,9 +20,17 @@ namespace Space2 {
|
|||
struct B;
|
||||
}
|
||||
using Space2::B;
|
||||
#ifdef __clang__
|
||||
namespace Space2 {
|
||||
struct B {
|
||||
void bb(Space2::B, B) {}
|
||||
};
|
||||
}
|
||||
#else
|
||||
struct B {
|
||||
void bb(Space2::B, B) {}
|
||||
};
|
||||
#endif
|
||||
void bbb(Space2::B, B) {}
|
||||
|
||||
namespace Space3 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue