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"
16 void operator <<= (Foo
&, std::string
&&)
21 run_main (int, ACE_TCHAR
*[])
23 ACE_START_TEST (ACE_TEXT("Compiler_Features_27_Test"));
25 // Visual Studio 2015 has a small issue with this construct
26 #if !(defined (_MSC_VER) && (_MSC_VER < 1910))
28 any
<<= std::move("abc");