Visual C++ doesn't support C99 compound literal

Fix test libcxx/test/std/containers/sequences/array/array.creation/to_array.pass.cpp

Reviewed By: #libc, Mordante

Differential Revision: https://reviews.llvm.org/D129923
This commit is contained in:
Igor Zhukov 2022-07-16 19:47:20 +02:00 committed by Mark de Wever
parent 844a320ccd
commit 9aea9ab83d
1 changed files with 2 additions and 0 deletions

View File

@ -82,6 +82,7 @@ constexpr bool tests()
assert(arr[i].get() == i && source[i].get() == 0);
}
#ifndef _MSVC_STL_VERSION
// Test C99 compound literal.
{
auto arr = std::to_array((int[]){3, 4});
@ -89,6 +90,7 @@ constexpr bool tests()
assert(arr[0] == 3);
assert(arr[1] == 4);
}
#endif // ! _MSVC_STL_VERSION
// Test explicit type.
{