2 * This program checks if the compiler doesn't have a certain bug
3 * that we encountered when testing C++11 features
6 #include "test_config.h"
12 std::array
<std::string
, 2> priority_names
=
15 std::string("NOT USED"),
20 std::string
t (std::uint32_t prop
)
22 std::uint32_t log
= 0;
24 for (; prop
> 1; ++log
)
27 return priority_names
[log
];
30 struct A
{ A(int) {} ; };
31 const std::array
<A
, 4> x
= {{ 1, 1, 1, 1 }};
34 run_main (int, ACE_TCHAR
*[])
36 ACE_START_TEST (ACE_TEXT("Compiler_Features_23_Test"));
39 ACE_TEXT ("Compiler Feature 23 Test does compile and run.\n")));