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 foo_impl_deleter
13 void operator()(foo_impl
*p
);
19 std::unique_ptr
<foo_impl
, foo_impl_deleter
> impl_
;
20 std::shared_ptr
<foo_impl
> impl2
{nullptr, foo_impl_deleter ()};
25 void foo_impl_deleter::operator()(foo_impl
*p
)
31 run_main (int, ACE_TCHAR
*[])
33 ACE_START_TEST (ACE_TEXT("Compiler_Features_35_Test"));
36 ACE_TEXT ("C++11 support ok\n")));