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"
11 struct non_instantiatable
13 using type
= typename
T::THIS_TYPE_CANNOT_BE_INSTANTIATED
;
17 run_main (int, ACE_TCHAR
*[])
19 ACE_START_TEST (ACE_TEXT("Compiler_Features_36_Test"));
21 bool const result
= std::is_base_of
<non_instantiatable
<int>, void>::value
;
22 ACE_UNUSED_ARG (result
);
25 ACE_TEXT ("C++11 support ok\n")));