1 #include <iostream>
2
3 #include <skeletons/maps.h>
4
5 using namespace std;
6 using namespace hugo::skeleton;
7
8 int main()
9 {
10 ReadableMap<int, char> a;
11
12 cout << sizeof a << endl;
13
14 }