//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // class packaged_task // template // struct uses_allocator, Alloc> // : true_type { }; #include #include "../../test_allocator.h" int main() { static_assert((std::uses_allocator, test_allocator >::value), ""); }