Compile fixes
[ACE_TAO.git] / ACE / tests / Compiler_Features_34_Test.cpp
blobac398b4df7771483bb3baef80aa10363220042b0
1 /**
2 * This program checks if the compiler doesn't have a certain bug
3 * that we encountered when testing C++11 features
4 */
6 #include "test_config.h"
8 class B
10 public:
11 private:
12 B& operator= (B&& x) = delete;
15 int
16 run_main (int, ACE_TCHAR *[])
18 ACE_START_TEST (ACE_TEXT("Compiler_Features_34_Test"));
20 B a;
21 ACE_UNUSED_ARG (a);
23 ACE_DEBUG ((LM_INFO,
24 ACE_TEXT ("C++11 support ok\n")));
26 ACE_END_TEST;
28 return 0;