diff options
Diffstat (limited to 'tests/headers/namespace.hpp')
-rw-r--r-- | tests/headers/namespace.hpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/headers/namespace.hpp b/tests/headers/namespace.hpp index 408207f2..a8e6f8ec 100644 --- a/tests/headers/namespace.hpp +++ b/tests/headers/namespace.hpp @@ -40,3 +40,12 @@ namespace w { C<float> barr(); // <- This is the problematic one } + +#define NAMESPACE foobar +namespace NAMESPACE { + void foo(); +} + +#include "namespace/nsbegin.h" +void bar(); +#include "namespace/nsend.h" |