2 * This program checks if the compiler / platform supports strongly
6 #include "test_config.h"
11 using arrayType
= std::array
<float, 5>;
12 using array_array
= std::array
<arrayType
, 5>;
16 run_main (int, ACE_TCHAR
*[])
18 ACE_START_TEST (ACE_TEXT("Compiler_Features_18_Test"));
20 Test::array_array v_in
= { { Test::arrayType
{
21 { 1.0, 2.0, 3.0, 4.0, 5.0 } }, Test::arrayType
{ { 1.0, 2.0, 3.0, 4.0,
22 5.0 } }, Test::arrayType
{ { 1.0, 2.0, 3.0, 4.0, 5.0 } },
23 Test::arrayType
{ { 1.0, 2.0, 3.0, 4.0, 5.0 } }, Test::arrayType
{ {
24 1.0, 2.0, 3.0, 4.0, 5.0 } } } };
26 ACE_UNUSED_ARG (v_in
);
29 ACE_TEXT ("Std arrays work.\n")));