Fix testcase for clang

This commit is contained in:
William S Fulton 2017-08-17 10:28:41 +01:00
commit dd3d04a2f2

View file

@ -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 {