//===----------------------------------------------------------------------===// // // 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. // //===----------------------------------------------------------------------===// // dynarray.data // void fill(const T& v); // const T* data() const noexcept; #include <__config> #if _LIBCPP_STD_VER > 11 #include #include #include #include #include using std::experimental::dynarray; template void test ( const T &val ) { typedef dynarray dynA; dynA d1 ( 4 ); d1.fill ( val ); assert ( std::all_of ( d1.begin (), d1.end (), [&val]( const T &item ){ return item == val; } )); } int main() { test ( 14 ); test ( 14.0 ); test> ( std::complex ( 14, 0 )); test ( "fourteen" ); } #else int main() {} #endif