Home | History | Annotate | Download | only in dynarray.traits
      1 //===----------------------------------------------------------------------===//
      2 //
      3 //                     The LLVM Compiler Infrastructure
      4 //
      5 // This file is dual licensed under the MIT and the University of Illinois Open
      6 // Source Licenses. See LICENSE.TXT for details.
      7 //
      8 //===----------------------------------------------------------------------===//
      9 
     10 // UNSUPPORTED: c++98, c++03, c++11
     11 // dynarray.data
     12 
     13 // template <class Type, class Alloc>
     14 //   struct uses_allocator<dynarray<Type>, Alloc> : true_type { };
     15 
     16 
     17 #include <__config>
     18 
     19 #include <experimental/dynarray>
     20 #include "test_allocator.h"
     21 
     22 using std::experimental::dynarray;
     23 
     24 int main()
     25 {
     26     static_assert ( std::uses_allocator<dynarray<int>, test_allocator<int>>::value, "" );
     27 }
     28 
     29