diff options
Diffstat (limited to 'tests/headers/inherit-namespaced.hpp')
-rw-r--r-- | tests/headers/inherit-namespaced.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/headers/inherit-namespaced.hpp b/tests/headers/inherit-namespaced.hpp new file mode 100644 index 00000000..61eafd5a --- /dev/null +++ b/tests/headers/inherit-namespaced.hpp @@ -0,0 +1,4 @@ +namespace js { + template <typename T> class RootedBase {}; +} +template <typename T> class Rooted : js::RootedBase<T> {}; |