summaryrefslogtreecommitdiff
path: root/test/datastructures/pbds.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/datastructures/pbds.cpp')
-rw-r--r--test/datastructures/pbds.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/datastructures/pbds.cpp b/test/datastructures/pbds.cpp
new file mode 100644
index 0000000..9080332
--- /dev/null
+++ b/test/datastructures/pbds.cpp
@@ -0,0 +1,11 @@
+#include "../util.h"
+#include <datastructures/pbds.cpp>
+
+int main() {
+ Tree<int> t1, t2;
+ swap(t1, t2);
+ hashSet<int> s1, s2;
+ swap(s1, s2);
+ hashMap<int, int> m1, m2;
+ swap(m1, m2);
+} \ No newline at end of file