blob: 359915cb6d7814ab23cfde4898918b35bd0bc7bc [file] [log] [blame]
// Build don't link:
template <class T, class Allocator>
struct __vector_alloc_base
{
typedef int allocator_type;
};
template <class T>
struct vector : __vector_alloc_base<T,int>
{
typedef short allocator_type;
explicit vector(const allocator_type& a = allocator_type()) {}
};