summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/ptr_test.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/ptr_test.cpp b/test/ptr_test.cpp
new file mode 100644
index 0000000..95b702b
--- /dev/null
+++ b/test/ptr_test.cpp
@@ -0,0 +1,14 @@
+#include "raul/SharedPtr.hpp"
+#include "raul/WeakPtr.hpp"
+
+int
+main()
+{
+ /* TODO: Actually test functionality... */
+
+ SharedPtr<int> iptr;
+ WeakPtr<int> wptr;
+ wptr = iptr;
+
+ return 0;
+}