summaryrefslogtreecommitdiff
path: root/ACE/tests/Compiler_Features_34_Test.cpp
blob: ac398b4df7771483bb3baef80aa10363220042b0 (plain)
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
/**
 * This program checks if the compiler doesn't have a certain bug
 * that we encountered when testing C++11 features
 */

#include "test_config.h"

class B
{
public:
private:
    B& operator= (B&& x) = delete;
};

int
run_main (int, ACE_TCHAR *[])
{
  ACE_START_TEST (ACE_TEXT("Compiler_Features_34_Test"));

  B a;
  ACE_UNUSED_ARG (a);

  ACE_DEBUG ((LM_INFO,
              ACE_TEXT ("C++11 support ok\n")));

  ACE_END_TEST;

  return 0;
}