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 using is_true
= std::true_type
;
13 using is_false
= std::false_type
;
17 run_main (int, ACE_TCHAR
*[])
19 ACE_START_TEST (ACE_TEXT("Compiler_Features_25_Test"));
22 if (Foo::is_true() && !Foo::is_false())
25 ACE_TEXT ("Compiler Feature 25 Test does compile and run.\n")));
30 ACE_TEXT ("ERROR: Compiler Feature 25 Test does not run correctly.\n")));