/** * This program checks if the compiler doesn't have a certain bug * that we encountered when testing C++11 features */ #include "test_config.h" #include template struct non_instantiatable { using type = typename T::THIS_TYPE_CANNOT_BE_INSTANTIATED; }; int run_main (int, ACE_TCHAR *[]) { ACE_START_TEST (ACE_TEXT("Compiler_Features_36_Test")); bool const result = std::is_base_of, void>::value; ACE_UNUSED_ARG (result); ACE_DEBUG ((LM_INFO, ACE_TEXT ("C++11 support ok\n"))); ACE_END_TEST; return 0; }