#include <stdext/hash_map>

int main()
{
	stdext::hash_map<int, int> hm;
	hm[1] = 2;
	return hm[1];
}
