1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
/**
* 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 <type_traits>
template <typename T>
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<non_instantiatable<int>, void>::value;
ACE_UNUSED_ARG (result);
ACE_DEBUG ((LM_INFO,
ACE_TEXT ("C++11 support ok\n")));
ACE_END_TEST;
return 0;
}
|