summaryrefslogtreecommitdiff
path: root/tests/headers/forward-declaration-autoptr.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/headers/forward-declaration-autoptr.hpp')
-rw-r--r--tests/headers/forward-declaration-autoptr.hpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/headers/forward-declaration-autoptr.hpp b/tests/headers/forward-declaration-autoptr.hpp
deleted file mode 100644
index a26c1cd2..00000000
--- a/tests/headers/forward-declaration-autoptr.hpp
+++ /dev/null
@@ -1,10 +0,0 @@
-class Foo;
-
-template <typename T>
-struct RefPtr {
- T* m_inner;
-};
-
-struct Bar {
- RefPtr<Foo> m_member;
-};