src/work/klao/map_test.cc
changeset 283 91e78d9b78f4
child 286 d3c4d99860a9
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/work/klao/map_test.cc	Sat Apr 03 18:22:08 2004 +0000
     1.3 @@ -0,0 +1,14 @@
     1.4 +#include <iostream>
     1.5 +
     1.6 +#include <skeletons/maps.h>
     1.7 +
     1.8 +using namespace std;
     1.9 +using namespace hugo::skeleton;
    1.10 +
    1.11 +int main()
    1.12 +{
    1.13 +  ReadableMap<int, char> a;
    1.14 +
    1.15 +  cout << sizeof a << endl;
    1.16 +
    1.17 +}