blob: 90803327f707d2e8ab1a7853a0e6d8f5cb55e081 (
plain)
1
2
3
4
5
6
7
8
9
10
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);
}
|