blob: bd32bc34e7a0fd91fdbc2a314d9ee49afb7e875a [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// <memory>
// template <class T, class Alloc> struct uses_allocator;
#include <memory>
#include <vector>
#include "test_macros.h"
struct A
{
};
struct B
{
typedef int allocator_type;
};
struct C {
static int allocator_type;
};
struct D {
static int allocator_type() { return 0; }
};
struct E {
private:
typedef int allocator_type;
};
int main()
{
static_assert((!std::uses_allocator<int, std::allocator<int> >::value), "");
static_assert(( std::uses_allocator<std::vector<int>, std::allocator<int> >::value), "");
static_assert((!std::uses_allocator<A, std::allocator<int> >::value), "");
static_assert((!std::uses_allocator<B, std::allocator<int> >::value), "");
static_assert(( std::uses_allocator<B, double>::value), "");
static_assert((!std::uses_allocator<C, decltype(C::allocator_type)>::value), "");
static_assert((!std::uses_allocator<D, decltype(D::allocator_type)>::value), "");
#if TEST_STD_VER >= 11
static_assert((!std::uses_allocator<E, int>::value), "");
#endif
}